Commit 317aef97 authored by satmandu's avatar satmandu Committed by GitHub

Fix Crew archiving issue in crew 1.6 (#5001)

* Fix archiving

* uprev
Co-authored-by: default avatarEd Reel <edreel@gmail.com>
parent cdec66ad
......@@ -886,7 +886,9 @@ end
def archive_package (pwd)
pkg_name = "#{@pkg.name}-#{@pkg.version}-chromeos-#{@device[:architecture]}.tar.xz"
system "tar -c#{@verbose}Jf #{CREW_DEST_DIR}/#{pwd}/#{pkg_name} *"
Dir.chdir CREW_DEST_DIR do
system "tar c#{@verbose}Jf #{pwd}/#{pkg_name} *"
end
system "sha256sum #{pwd}/#{pkg_name} > #{pwd}/#{pkg_name}.sha256"
end
......
# Defines common constants used in different parts of crew
CREW_VERSION = '1.7.0'
CREW_VERSION = '1.7.1'
ARCH_ACTUAL = `uname -m`.strip
# This helps with virtualized builds on aarch64 machines
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment