|
Alain Reguera Delgado |
f2dca1 |
#!/bin/bash
|
|
Alain Reguera Delgado |
f2dca1 |
######################################################################
|
|
Alain Reguera Delgado |
f2dca1 |
#
|
|
Alain Reguera Delgado |
e4a321 |
# tcar_checkWorkDirSource.sh -- This function prepares non-option
|
|
Alain Reguera Delgado |
e4a321 |
# arguments passed through the command-line for further processing.
|
|
Alain Reguera Delgado |
e4a321 |
# When the argument provided is not an absolute path this function
|
|
Alain Reguera Delgado |
e4a321 |
# transforms it into an absolute path using the current working
|
|
Alain Reguera Delgado |
e4a321 |
# directory.
|
|
Alain Reguera Delgado |
f2dca1 |
#
|
|
Alain Reguera Delgado |
f2dca1 |
# Written by:
|
|
Alain Reguera Delgado |
f2dca1 |
# * Alain Reguera Delgado <al@centos.org.cu>, 2009-2013
|
|
Alain Reguera Delgado |
f2dca1 |
#
|
|
Alain Reguera Delgado |
f2dca1 |
# Copyright (C) 2009-2013 The CentOS Artwork SIG
|
|
Alain Reguera Delgado |
f2dca1 |
#
|
|
Alain Reguera Delgado |
f2dca1 |
# This program is free software; you can redistribute it and/or modify
|
|
Alain Reguera Delgado |
f2dca1 |
# it under the terms of the GNU General Public License as published by
|
|
Alain Reguera Delgado |
f2dca1 |
# the Free Software Foundation; either version 2 of the License, or (at
|
|
Alain Reguera Delgado |
f2dca1 |
# your option) any later version.
|
|
Alain Reguera Delgado |
f2dca1 |
#
|
|
Alain Reguera Delgado |
f2dca1 |
# This program is distributed in the hope that it will be useful, but
|
|
Alain Reguera Delgado |
f2dca1 |
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
Alain Reguera Delgado |
f2dca1 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
Alain Reguera Delgado |
f2dca1 |
# General Public License for more details.
|
|
Alain Reguera Delgado |
f2dca1 |
#
|
|
Alain Reguera Delgado |
f2dca1 |
# You should have received a copy of the GNU General Public License
|
|
Alain Reguera Delgado |
f2dca1 |
# along with this program; if not, write to the Free Software
|
|
Alain Reguera Delgado |
f2dca1 |
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
Alain Reguera Delgado |
f2dca1 |
#
|
|
Alain Reguera Delgado |
f2dca1 |
######################################################################
|
|
Alain Reguera Delgado |
f2dca1 |
|
|
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 |
e4a321 |
# location.
|
|
Alain Reguera Delgado |
f2dca1 |
echo "${LOCATION}" | sed -r -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 |
}
|