diff options
author | Eli Mallon <eli@livepeer.org> | 2024-01-12 10:25:00 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-12 10:25:00 -0800 |
commit | c0261fc940c11be48eeb296400af4a3f5d5b6b7d (patch) | |
tree | c04ca0a9e33b45dd8b270f22f730f79ccb580596 | |
parent | 95d771b3a559caa4ebd7e800d46c6a003744d92b (diff) | |
download | voidsky-c0261fc940c11be48eeb296400af4a3f5d5b6b7d.tar.zst |
package.json: cp --verbose doesn't exist on macos (#2501)
-rw-r--r-- | package.json | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package.json b/package.json index 6572d868b..79597c824 100644 --- a/package.json +++ b/package.json @@ -12,7 +12,7 @@ "android": "expo run:android", "ios": "expo run:ios", "web": "expo start --web", - "build-web": "expo export:web && node ./scripts/post-web-build.js && cp --verbose ./web-build/static/js/*.* ./bskyweb/static/js/", + "build-web": "expo export:web && node ./scripts/post-web-build.js && cp -v ./web-build/static/js/*.* ./bskyweb/static/js/", "build-all": "yarn intl:build && eas build --platform all", "start": "expo start --dev-client", "start:prod": "expo start --dev-client --no-dev --minify", |