Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b2bf9ad4 authored by Jackeagle's avatar Jackeagle
Browse files

Fix some issues

parent 6e0bcc6a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -196,7 +196,7 @@ RUN apt-get -qq update
RUN apt-get -qqy upgrade

RUN apt-get install -y android-sdk-libsparse-utils bc bison bsdmainutils build-essential ccache cgpt clang cron \
      curl flex g++-multilib gcc-multilib git git-lfs gnupg gperf imagemagick kmod jq \
      curl file flex g++-multilib gcc-multilib git git-lfs gnupg gperf imagemagick kmod jq \
      lib32readline-dev lib32z1-dev liblz4-tool \
      libsdl1.2-dev libssl-dev libxml2 \
      libxml2-utils lsof lzop maven pngcrush \
+2 −2
Original line number Diff line number Diff line
@@ -19,10 +19,10 @@ echo ">> [$(date)] Starting build with site survey monitoring"
/root/site_survey.sh /root/build.sh

# Move the generated survey zip file to ZIP_DIR
# The site_survey.sh creates incredibuild_logs_*.zip in SRC_DIR (where build.sh runs)
# The site_survey.sh creates incredibuild_logs_*.zip in /root (where site_survey.sh runs)
if [ -n "$ZIP_DIR" ] && [ -d "$ZIP_DIR" ]; then
  echo ">> [$(date)] Moving site survey results to $ZIP_DIR"
  find "$SRC_DIR" -maxdepth 1 -name "incredibuild_logs_*.zip" -type f -exec mv {} "$ZIP_DIR/" \;
  find /root -maxdepth 1 -name "incredibuild_logs_*.zip" -type f -exec mv {} "$ZIP_DIR/" \;

  # Check if any files were moved
  if ls "$ZIP_DIR"/incredibuild_logs_*.zip 1> /dev/null 2>&1; then