Skip to content

Commit

Permalink
Using previous method of copying fastlane folder and gemfile
Browse files Browse the repository at this point in the history
  • Loading branch information
salemlf committed Jan 29, 2024
1 parent e04f0ae commit f6eb0df
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions begin-action.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,13 @@ if [ -n "${KEYSTORE_CONTENT}" ]; then
fi

# If statement used to prevent annoying cp warnings about possible same directories/files
if [ diff -r -q $PWD $ACTION_PATH != 0]; then
cp -r ${ACTION_PATH}/fastlane ./
cp ${ACTION_PATH}/Gemfile ./
fi
# if [ diff -r -q $PWD $ACTION_PATH != 0]; then
# cp -r ${ACTION_PATH}/fastlane ./
# cp ${ACTION_PATH}/Gemfile ./
# fi

cp -r ${ACTION_PATH}/fastlane ./
cp ${ACTION_PATH}/Gemfile ./

bundle add fastlane --version ${FASTLANE_VERSION}
bundle install
Expand Down

0 comments on commit f6eb0df

Please sign in to comment.