diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2013-03-16 18:44:56 -0400 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2013-03-16 18:44:56 -0400 |
commit | 02e65752e544754e029288f0b539661a7040fa76 (patch) | |
tree | 2afe0741f443170ac91edcec102e174a4296309d /pbs-package-fork | |
parent | ab8423d3cdf52bf86589498107f59470868301f1 (diff) |
fix quoting in pbs-package-fork
Diffstat (limited to 'pbs-package-fork')
-rwxr-xr-x | pbs-package-fork | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pbs-package-fork b/pbs-package-fork index 6ae1eff..56d0663 100755 --- a/pbs-package-fork +++ b/pbs-package-fork @@ -45,9 +45,9 @@ main() { git submodule add -b "packages/${oldpackage}" "${repository}" "${dest}" cd "${dest}" git checkout -b "packages/${newpackage}" - printf '%s packages/%s\n' "${repository}" "${oldpackage}" > pbstrack + echo "${repository} packages/${oldpkackage}" > pbstrack git add pbstrack - git commit -m 'Fork package from ${repository} ${oldpackage} to ${dest}' + git commit -m "Fork package from ${repository} ${oldpackage} to ${dest}" } main "$@" |