From aaca9240a27d1f1e4ec8a580bf68b04120bed32b Mon Sep 17 00:00:00 2001 From: Brandon Presley Date: Sat, 5 Nov 2022 13:01:17 +1300 Subject: [PATCH] Stop flooding logs in deploy.sh when sourcing rvm This stuff is just because I don't want to source rvm in my .bashrc which slows it down significantly. I guess this stuff would not work so well on other peoples machines, but i'll worry about that if anyone other than myself wants to do deployments. --- deploy.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/deploy.sh b/deploy.sh index c10047b..a8ee685 100755 --- a/deploy.sh +++ b/deploy.sh @@ -29,8 +29,11 @@ sed -i "s/\"version\": \"[0-9]*.[0-9]*\"/\"version\": \"$major.$minor\"/" ../pac [ "$1" != "--nobundle" ] && ./gradlew bundleRelease +set +x source ~/.cache/yay/rvm/rvm.sh rvm use ruby-2.7.5 +set -x + fastlane supply --aab app/build/outputs/bundle/release/app-release.aab git add app/build.gradle ../package.json