Skip to content

Commit

Permalink
rm -f
Browse files Browse the repository at this point in the history
  • Loading branch information
KTachibanaM committed Jun 1, 2020
1 parent 89b78ea commit 6128d3e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ clean:
./gradlew app:clean

debug: clean
rm app-debug.apk
rm -f app-debug.apk
./gradlew app:assembleDebug
mv ./app/build/outputs/apk/debug/app-debug.apk .

install-debug: clean
./gradlew app:installDebug

release: clean
rm app-release.apk
rm -f app-release.apk
./gradlew app:assembleRelease
mv ./app/build/outputs/apk/release/app-release.apk .

Expand Down

0 comments on commit 6128d3e

Please sign in to comment.