Issue 50:

- Fix forgetting unquotes command substitution in function vcs_relative_path.
 - Using old test instead of new test in Makefile.
 - Fix some variables for Bob in "confidence_test.sh".
This commit is contained in:
LE Manh Cuong
2015-03-03 09:31:09 +07:00
parent 9c9691c5d6
commit 19532b82d5
3 changed files with 6 additions and 6 deletions

View File

@@ -260,7 +260,7 @@ function enumerate_subdirs() {
function vcs_relative_path() {
# Usage: vcs_relative_path file
local name="$1"
python -c 'import os ; print(os.path.relpath("'$(pwd -P)'/'"$name"'", "'"$REPOBASE"'"))'
python -c 'import os ; print(os.path.relpath("'"$(pwd -P)"'/'"$name"'", "'"$REPOBASE"'"))'
}
#