|
Alain Reguera Delgado |
f2dca1 |
#!/bin/bash
|
|
Alain Reguera Delgado |
f2dca1 |
######################################################################
|
|
Alain Reguera Delgado |
f2dca1 |
#
|
|
Alain Reguera Delgado |
b33753 |
# tcar - The CentOS Artwork Repository automation tool.
|
|
Alain Reguera Delgado |
b33753 |
# Copyright © 2014 The CentOS Artwork SIG
|
|
Alain Reguera Delgado |
f2dca1 |
#
|
|
Alain Reguera Delgado |
b33753 |
# This program is free software; you can redistribute it and/or
|
|
Alain Reguera Delgado |
b33753 |
# modify it under the terms of the GNU General Public License as
|
|
Alain Reguera Delgado |
b33753 |
# published by the Free Software Foundation; either version 2 of the
|
|
Alain Reguera Delgado |
b33753 |
# License, or (at your option) any later version.
|
|
Alain Reguera Delgado |
f2dca1 |
#
|
|
Alain Reguera Delgado |
b33753 |
# This program is distributed in the hope that it will be useful,
|
|
Alain Reguera Delgado |
b33753 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
Alain Reguera Delgado |
b33753 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
Alain Reguera Delgado |
b33753 |
# General Public License for more details.
|
|
Alain Reguera Delgado |
f2dca1 |
#
|
|
Alain Reguera Delgado |
b33753 |
# You should have received a copy of the GNU General Public License
|
|
Alain Reguera Delgado |
b33753 |
# along with this program; if not, write to the Free Software
|
|
Alain Reguera Delgado |
b33753 |
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
Alain Reguera Delgado |
f2dca1 |
#
|
|
Alain Reguera Delgado |
b33753 |
# Alain Reguera Delgado <al@centos.org.cu>
|
|
Alain Reguera Delgado |
b33753 |
# 39 Street No. 4426 Cienfuegos, Cuba.
|
|
Alain Reguera Delgado |
f2dca1 |
#
|
|
Alain Reguera Delgado |
f2dca1 |
######################################################################
|
|
Alain Reguera Delgado |
f2dca1 |
|
|
Alain Reguera Delgado |
b33753 |
# Prepare non-option arguments passed through the command-line for
|
|
Alain Reguera Delgado |
b33753 |
# further processing. When the argument provided is not an absolute
|
|
Alain Reguera Delgado |
b33753 |
# path this function transforms it into an absolute path using the
|
|
Alain Reguera Delgado |
b33753 |
# current working directory.
|
|
Alain Reguera Delgado |
f2dca1 |
function tcar_checkWorkDirSource {
|
|
Alain Reguera Delgado |
f2dca1 |
|
|
Alain Reguera Delgado |
f2dca1 |
local LOCATION=${1}
|
|
Alain Reguera Delgado |
f2dca1 |
|
|
Alain Reguera Delgado |
e4a321 |
# Append the current working directory when the location provided
|
|
Alain Reguera Delgado |
e4a321 |
# isn't absolute.
|
|
Alain Reguera Delgado |
e4a321 |
if [[ ! ${LOCATION} =~ '^/' ]];then
|
|
Alain Reguera Delgado |
e4a321 |
LOCATION=${PWD}/${LOCATION}
|
|
Alain Reguera Delgado |
e4a321 |
fi
|
|
Alain Reguera Delgado |
f2dca1 |
|
|
Alain Reguera Delgado |
e4a321 |
# Remove both consecutive slashes and trailing slashes from final
|
|
Alain Reguera Delgado |
3a0a02 |
# location. Remove dot-slash, as well.
|
|
Alain Reguera Delgado |
3a0a02 |
echo "${LOCATION}" | sed -r -e 's,/+,/,g' -e 's,/+$,,g' -e 's,\./,,g'
|
|
Alain Reguera Delgado |
f2dca1 |
|
|
Alain Reguera Delgado |
e4a321 |
# The single slash form doesn't point to repository's root
|
|
Alain Reguera Delgado |
e4a321 |
# directory anymore. Instead, when a single slash is passed
|
|
Alain Reguera Delgado |
e4a321 |
# as argument through the command-line, it preserves its regular
|
|
Alain Reguera Delgado |
e4a321 |
# meaning which is pointing the workstation's file system.
|
|
Alain Reguera Delgado |
e4a321 |
|
|
Alain Reguera Delgado |
e4a321 |
# The path verification isn't appropriate here because this
|
|
Alain Reguera Delgado |
e4a321 |
# function is commonly used inside variable assignments and flow
|
|
Alain Reguera Delgado |
e4a321 |
# control doesn't take place in such situation. In case path
|
|
Alain Reguera Delgado |
e4a321 |
# verification fails here, the script wouldn't end its execution
|
|
Alain Reguera Delgado |
e4a321 |
# which contradicts the expected behaviour.
|
|
Alain Reguera Delgado |
f2dca1 |
|
|
Alain Reguera Delgado |
f2dca1 |
}
|