diff options
author | Chocobozzz <me@florianbigard.com> | 2021-05-05 10:56:40 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2021-05-05 10:56:49 +0200 |
commit | f463e2dfc00a0d5b5300ed74d2f24fbe9caef8ea (patch) | |
tree | 7b014eb7cd4a4b7f0579cb340a13be957ee75921 | |
parent | fee7bbc3c74eb76525dd438c56c26998765992a3 (diff) | |
download | PeerTube-f463e2dfc00a0d5b5300ed74d2f24fbe9caef8ea.tar.gz PeerTube-f463e2dfc00a0d5b5300ed74d2f24fbe9caef8ea.tar.zst PeerTube-f463e2dfc00a0d5b5300ed74d2f24fbe9caef8ea.zip |
Use bash for scripts
-rw-r--r-- | package.json | 48 |
1 files changed, 24 insertions, 24 deletions
diff --git a/package.json b/package.json index 8552a9d60..2c4c478ac 100644 --- a/package.json +++ b/package.json | |||
@@ -25,25 +25,25 @@ | |||
25 | }, | 25 | }, |
26 | "typings": "*.d.ts", | 26 | "typings": "*.d.ts", |
27 | "scripts": { | 27 | "scripts": { |
28 | "e2e": "sh ./scripts/e2e/index.sh", | 28 | "e2e": "bash ./scripts/e2e/index.sh", |
29 | "e2e:local": "sh ./scripts/e2e/local.sh", | 29 | "e2e:local": "bash ./scripts/e2e/local.sh", |
30 | "setup:cli": "sh ./scripts/setup/cli.sh", | 30 | "setup:cli": "bash ./scripts/setup/cli.sh", |
31 | "build": "sh ./scripts/build/index.sh", | 31 | "build": "bash ./scripts/build/index.sh", |
32 | "build:embed": "sh ./scripts/build/embed.sh", | 32 | "build:embed": "bash ./scripts/build/embed.sh", |
33 | "build:server": "sh ./scripts/build/server.sh", | 33 | "build:server": "bash ./scripts/build/server.sh", |
34 | "build:client": "sh ./scripts/build/client.sh", | 34 | "build:client": "bash ./scripts/build/client.sh", |
35 | "clean:client": "sh ./scripts/clean/client/index.sh", | 35 | "clean:client": "bash ./scripts/clean/client/index.sh", |
36 | "clean:server:test": "sh ./scripts/clean/server/test.sh", | 36 | "clean:server:test": "bash ./scripts/clean/server/test.sh", |
37 | "i18n:update": "sh ./scripts/i18n/update.sh", | 37 | "i18n:update": "bash ./scripts/i18n/update.sh", |
38 | "plugin:install": "node ./dist/scripts/plugin/install.js", | 38 | "plugin:install": "node ./dist/scripts/plugin/install.js", |
39 | "plugin:uninstall": "node ./dist/scripts/plugin/uninstall.js", | 39 | "plugin:uninstall": "node ./dist/scripts/plugin/uninstall.js", |
40 | "i18n:create-custom-files": "node ./dist/scripts/i18n/create-custom-files.js", | 40 | "i18n:create-custom-files": "node ./dist/scripts/i18n/create-custom-files.js", |
41 | "reset-password": "node ./dist/scripts/reset-password.js", | 41 | "reset-password": "node ./dist/scripts/reset-password.js", |
42 | "dev": "sh ./scripts/dev/index.sh", | 42 | "dev": "bash ./scripts/dev/index.sh", |
43 | "dev:server": "sh ./scripts/dev/server.sh", | 43 | "dev:server": "bash ./scripts/dev/server.sh", |
44 | "dev:embed": "sh ./scripts/dev/embed.sh", | 44 | "dev:embed": "bash ./scripts/dev/embed.sh", |
45 | "dev:client": "sh ./scripts/dev/client.sh", | 45 | "dev:client": "bash ./scripts/dev/client.sh", |
46 | "dev:cli": "sh ./scripts/dev/cli.sh", | 46 | "dev:cli": "bash ./scripts/dev/cli.sh", |
47 | "start": "node dist/server", | 47 | "start": "node dist/server", |
48 | "start:server": "node dist/server --no-client", | 48 | "start:server": "node dist/server --no-client", |
49 | "update-host": "node ./dist/scripts/update-host.js", | 49 | "update-host": "node ./dist/scripts/update-host.js", |
@@ -51,9 +51,9 @@ | |||
51 | "regenerate-thumbnails": "node ./dist/scripts/regenerate-thumbnails.js", | 51 | "regenerate-thumbnails": "node ./dist/scripts/regenerate-thumbnails.js", |
52 | "create-import-video-file-job": "node ./dist/scripts/create-import-video-file-job.js", | 52 | "create-import-video-file-job": "node ./dist/scripts/create-import-video-file-job.js", |
53 | "print-transcode-command": "node ./dist/scripts/print-transcode-command.js", | 53 | "print-transcode-command": "node ./dist/scripts/print-transcode-command.js", |
54 | "test": "sh ./scripts/test.sh", | 54 | "test": "bash ./scripts/test.sh", |
55 | "help": "sh ./scripts/help.sh", | 55 | "help": "bash ./scripts/help.sh", |
56 | "generate-cli-doc": "sh ./scripts/generate-cli-doc.sh", | 56 | "generate-cli-doc": "bash ./scripts/generate-cli-doc.sh", |
57 | "parse-log": "node ./dist/scripts/parse-log.js", | 57 | "parse-log": "node ./dist/scripts/parse-log.js", |
58 | "prune-storage": "node ./dist/scripts/prune-storage.js", | 58 | "prune-storage": "node ./dist/scripts/prune-storage.js", |
59 | "optimize-old-videos": "node ./dist/scripts/optimize-old-videos.js", | 59 | "optimize-old-videos": "node ./dist/scripts/optimize-old-videos.js", |
@@ -67,12 +67,12 @@ | |||
67 | "eslint": "eslint", | 67 | "eslint": "eslint", |
68 | "concurrently": "concurrently", | 68 | "concurrently": "concurrently", |
69 | "mocha": "mocha", | 69 | "mocha": "mocha", |
70 | "ci": "sh ./scripts/ci.sh", | 70 | "ci": "bash ./scripts/ci.sh", |
71 | "release": "sh ./scripts/release.sh", | 71 | "release": "bash ./scripts/release.sh", |
72 | "release-embed-api": "sh ./scripts/release-embed-api.sh", | 72 | "release-embed-api": "bash ./scripts/release-embed-api.sh", |
73 | "nightly": "sh ./scripts/nightly.sh", | 73 | "nightly": "bash ./scripts/nightly.sh", |
74 | "openapi-clients": "sh ./scripts/openapi-clients.sh", | 74 | "openapi-clients": "bash ./scripts/openapi-clients.sh", |
75 | "client-report": "sh ./scripts/client-report.sh", | 75 | "client-report": "bash ./scripts/client-report.sh", |
76 | "swagger-cli": "swagger-cli" | 76 | "swagger-cli": "swagger-cli" |
77 | }, | 77 | }, |
78 | "dependencies": { | 78 | "dependencies": { |