Переглянути джерело

mkrootfs.sh.in remove redundant variable

Michael Aldridge 7 роки тому
батько
коміт
41676808b3
1 змінених файлів з 3 додано та 3 видалено
  1. 3 3
      mkrootfs.sh.in

+ 3 - 3
mkrootfs.sh.in

@@ -208,8 +208,8 @@ rm -rf "$ROOTFS/var/cache/*" 2>/dev/null
 
 # Finally we can compress the tarball, the name will include the
 # architecture and the date on which the tarball was built.
-tarball=${FILENAME-void-${XBPS_TARGET_ARCH}-ROOTFS-$(date '+%Y%m%d').tar.xz}
-run_cmd "tar -cp --posix --xattrs -C $ROOTFS . | xz -T${COMPRESSOR_THREADS:-0} -9 > $tarball "
+: "${FILENAME:=void-${XBPS_TARGET_ARCH}-ROOTFS-$(date '+%Y%m%d').tar.xz}"
+run_cmd "tar -cp --posix --xattrs -C $ROOTFS . | xz -T${COMPRESSOR_THREADS:-0} -9 > $FILENAME "
 
 # Now that we have the tarball we don't need the rootfs anymore, so we
 # can get rid of it.
@@ -219,4 +219,4 @@ rm -rf "$ROOTFS"
 # this succeeded.  This also ensures that there's something visible
 # that the user can look for at the end of the script, which can make
 # it easier to see what's going on if something above failed.
-info_msg "Successfully created $tarball ($XBPS_TARGET_ARCH)"
+info_msg "Successfully created $FILENAME ($XBPS_TARGET_ARCH)"