diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2015-05-24 00:22:39 -0600 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2015-05-24 00:22:39 -0600 |
commit | f14381c2a3df309de0034836ab9050fef382504b (patch) | |
tree | c7a70f2bd9adc396c7a96e3e4b6a98d3107c5866 | |
parent | 90efb9b7356ac954ce102fab03fe2c7d97d6a5bd (diff) |
xbs-abslibre: The comment I wrote 2 commits ago said move, not copy.
And that was the correct behavior, not what the code did.
-rwxr-xr-x | src/xbs-abslibre/helper-abslibre | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xbs-abslibre/helper-abslibre b/src/xbs-abslibre/helper-abslibre index 592fbd2..4d4ebf6 100755 --- a/src/xbs-abslibre/helper-abslibre +++ b/src/xbs-abslibre/helper-abslibre @@ -102,7 +102,7 @@ release-server() { fi mkdir -p -- "$pkgdir" - cp -- * "$pkgdir" + mv -- * "$pkgdir" if [[ -e "${ABSLIBREDEST}/${arch}/.git" ]]; then cd "$pkgdir" |