Skip to content

Commit

Permalink
Fix the clean.sh script
Browse files Browse the repository at this point in the history
  • Loading branch information
staszekscp committed Nov 21, 2024
1 parent 13c3b1b commit fcbd7b4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"setupNewDotWebForEmulators": "./scripts/setup-newdot-web-emulators.sh",
"startAndroidEmulator": "./scripts/start-android.sh",
"postinstall": "./scripts/postInstall.sh",
"clean": "npx react-native clean-project-auto",
"clean": "./scripts/clean.sh",
"clean-standalone": "./scripts/clean.sh",
"android": "./scripts/set-pusher-suffix.sh && ./scripts/run-build.sh --android",
"android-standalone": "./scripts/set-pusher-suffix.sh && ./scripts/run-build.sh --android --new-dot",
Expand Down
2 changes: 1 addition & 1 deletion scripts/clean.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ if [[ "$IS_HYBRID_APP_REPO" == "true" && "$1" != "--new-dot" ]]; then
echo -e "${BLUE}Cleaning HybridApp project...${NC}"
# Navigate to Mobile-Expensify repository, and clean
cd Mobile-Expensify
npm run clean
npm run clean -- "$@"
else
# Clean NewDot
echo -e "${BLUE}Cleaning standalone NewDot project...${NC}"
Expand Down

0 comments on commit fcbd7b4

Please sign in to comment.