diff options
Diffstat (limited to 'build/install/install.sh')
-rwxr-xr-x | build/install/install.sh | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/build/install/install.sh b/build/install/install.sh index d1a49f35f..198f26cb5 100755 --- a/build/install/install.sh +++ b/build/install/install.sh @@ -390,6 +390,7 @@ copy_packages() { if [ -f $TOP/patch-packages/release/patch-replacements ]; then echo "Applying package patches" | tee -a $REPORTFILE pushd $REPO/pool/main > /dev/null + echo "CM: I am now in $(pwd)" printf "\n\n" | tee -a $REPORTFILE for line in `cat $TOP/patch-packages/release/patch-replacements` do @@ -447,8 +448,10 @@ copy_packages() { # /^Version:/{print pkg ": \"" $2 "\""}' > ubuntu-versions.yaml # cp ubuntu-versions.yaml $DEST - apt-ftparchive -c "${APT_REL_CONF}" release dists/mos9.0/ > dists/mos9.0/Release - gzip -9cf dists/mos9.0/Release > dists/mos9.0/Release.gz + echo apt-ftparchive -c "${APT_REL_CONF}" release dists/mos10.0/ > dists/mos10.0/Release + apt-ftparchive -c "${APT_REL_CONF}" release dists/mos10.0/ > dists/mos10.0/Release + echo gzip -9cf dists/mos10.0/Release > dists/mos10.0/Release.gz + gzip -9cf dists/mos10.0/Release > dists/mos10.0/Release.gz popd > /dev/null |