Skip to content

Commit

Permalink
Download all from arm
Browse files Browse the repository at this point in the history
  • Loading branch information
huyennguyen-katalon committed Oct 3, 2024
1 parent 5ec0493 commit 90e4646
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Binary file modified .DS_Store
Binary file not shown.
2 changes: 1 addition & 1 deletion src/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ COPY ./src/scripts/setup.sh setup.sh
RUN chmod a+x setup.sh

# Main setup
RUN $KATALON_KATALON_SCRIPT_DIR/setup.sh $TARGETPLATFORM
RUN $KATALON_KATALON_SCRIPT_DIR/setup.sh $TARGETPLATFORM > ./temp.log 2>&1

# Set locale
ENV LANG C.UTF-8
Expand Down
4 changes: 2 additions & 2 deletions src/scripts/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ cd $KATALON_KATALON_ROOT_DIR
echo "Install Katalon"
katalon_version=$(cut -d '-' -f 1 <<< "$KATALON_STUDIO_VERSION")
katalon_directory="$version"
katalon_package="Katalon_Studio_Engine_Linux_64-$katalon_version.tar.gz"
katalon_unzipped_directory="Katalon_Studio_Engine_Linux_64-$katalon_version"
katalon_package="Katalon_Studio_Engine_Linux_arm64-$katalon_version.tar.gz"
katalon_unzipped_directory="Katalon_Studio_Engine_Linux_arm64-$katalon_version"
if [ $TARGETPLATFORM -eq "linux/arm64" ]; then
katalon_package="Katalon_Studio_Engine_Linux_arm64-$katalon_version.tar.gz"
katalon_unzipped_directory="Katalon_Studio_Engine_Linux_arm64-$katalon_version"
Expand Down

0 comments on commit 90e4646

Please sign in to comment.