ソースを参照

Don't start server if compilation fails

master
Dylan Baker 5年前
コミット
944d197945
3個のファイルの変更9行の追加3行の削除
  1. 3
    1
      start-debug-mode.sh
  2. 3
    1
      start-profiling.sh
  3. 3
    1
      start-release-mode.sh

+ 3
- 1
start-debug-mode.sh ファイルの表示

7
 
7
 
8
 wasm-pack build --target web --dev --out-dir www/pkg -- --features "with-measure"
8
 wasm-pack build --target web --dev --out-dir www/pkg -- --features "with-measure"
9
 
9
 
10
-basic-http-server ./www -a 0.0.0.0:4001
10
+if [ $? -eq 0 ]; then
11
+  basic-http-server ./www -a 0.0.0.0:4001
12
+fi

+ 3
- 1
start-profiling.sh ファイルの表示

6
 
6
 
7
 wasm-pack build --target web --profiling --out-dir www/pkg
7
 wasm-pack build --target web --profiling --out-dir www/pkg
8
 
8
 
9
-basic-http-server ./www -a 0.0.0.0:4001
9
+if [ $? -eq 0 ]; then
10
+  basic-http-server ./www -a 0.0.0.0:4001
11
+fi

+ 3
- 1
start-release-mode.sh ファイルの表示

6
 
6
 
7
 wasm-pack build --target web --release --out-dir www/pkg
7
 wasm-pack build --target web --release --out-dir www/pkg
8
 
8
 
9
-basic-http-server ./www -a 0.0.0.0:4001
9
+if [ $? -eq 0 ]; then
10
+  basic-http-server ./www -a 0.0.0.0:4001
11
+fi

読み込み中…
キャンセル
保存