mirror of
https://github.com/erenfro/gen2stage4.git
synced 2024-11-13 02:38:57 -05:00
using -f parameter to actually signal archive name
This commit is contained in:
parent
9a96781235
commit
3ee72e46fc
1 changed files with 2 additions and 2 deletions
|
@ -130,7 +130,7 @@ then
|
|||
fi
|
||||
|
||||
# Generic tar options:
|
||||
TAR_OPTIONS="-cjpP --ignore-failed-read -f"
|
||||
TAR_OPTIONS="-cjpP --ignore-failed-read"
|
||||
|
||||
# if not in quiet mode, this message will be displayed:
|
||||
if [ "$AGREE" != "yes" ]
|
||||
|
@ -154,7 +154,7 @@ fi
|
|||
# start stage4 creation:
|
||||
if [ "$AGREE" == "yes" ]
|
||||
then
|
||||
cd $TARGET && tar $TAR_OPTIONS $EXCLUDES $OPTIONS $STAGE4_FILENAME *
|
||||
cd $TARGET && tar $TAR_OPTIONS $EXCLUDES $OPTIONS -f $STAGE4_FILENAME *
|
||||
fi
|
||||
|
||||
exit 0
|
||||
|
|
Loading…
Reference in a new issue