mirror of
https://github.com/erenfro/gen2stage4.git
synced 2024-11-21 22:25:35 -05:00
Change order of tarIncludes in tar command
This commit is contained in:
parent
fbf5621221
commit
b0e4144ccf
1 changed files with 1 additions and 1 deletions
|
@ -288,7 +288,7 @@ fi
|
|||
# start stage4 creation:
|
||||
if $optQuiet; then
|
||||
#echo "Would've worked"
|
||||
tar "${tarOptions[@]}" "${tarExcludes[@]/#/--exclude=}" -f "${stage4Filename}.${stage4Ext}" "${targetPath}" "${tarIncludes[@]}"
|
||||
tar "${tarOptions[@]}" "${tarIncludes[@]}" "${tarExcludes[@]/#/--exclude=}" -f "${stage4Filename}.${stage4Ext}" "${targetPath}"
|
||||
if [[ "$optSeperateKernel" ]]
|
||||
then
|
||||
tar "${tarOptions[@]}" -f "${stage4Filename}.ksrc.${stage4Ext}" "${targetPath}usr/src/linux-$(uname -r)"
|
||||
|
|
Loading…
Reference in a new issue