summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Baumann <daniel@debian.org>2008-04-15 17:17:48 +0200
committerDaniel Baumann <daniel@debian.org>2008-04-15 17:17:48 +0200
commit3f703f480262779180c3540476e29fd6714c5fda (patch)
treeabd19c7d1f70ab70dc24e034c658a4e8699207c0
parentfd818bdd1d1d2fb5423c5491966ee2e731ca3326 (diff)
downloadvyos-live-build-3f703f480262779180c3540476e29fd6714c5fda.tar.gz
vyos-live-build-3f703f480262779180c3540476e29fd6714c5fda.zip
Consistenly using short options rather than long options in function files.
-rwxr-xr-xfunctions/cache.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/functions/cache.sh b/functions/cache.sh
index 1b043681d..5493471a6 100755
--- a/functions/cache.sh
+++ b/functions/cache.sh
@@ -48,7 +48,7 @@ Save_cache ()
if [ "$(stat --printf %d ${DIRECTORY})" = "$(stat --printf %d chroot/var/cache/apt/archives)" ]
then
# with hardlinks
- cp --force -l chroot/var/cache/apt/archives/*.deb "${DIRECTORY}"
+ cp -fl chroot/var/cache/apt/archives/*.deb "${DIRECTORY}"
else
# without hardlinks
mv -f chroot/var/cache/apt/archives/*.deb "${DIRECTORY}"