ソースを参照

Move commands to build script and conditionally create /json directory

pull/362/head
Dave Machado 7年前
コミット
f3e1fe1b30
この署名に対応する既知のキーがデータベースに存在しません GPGキーID: 948D4778D01A7B3F
2個のファイルの変更3行の追加3行の削除
  1. +0
    -3
      .travis.yml
  2. +3
    -0
      build/build.sh

+ 0
- 3
.travis.yml ファイルの表示

@@ -8,8 +8,5 @@ script:
after_script:
- cd build
- sh build.sh
- ls -l ../
- ls -l ../json
- cat -l ../json/api.json
notifications:
email: false

+ 3
- 0
build/build.sh ファイルの表示

@@ -1,4 +1,7 @@
#!/bin/bash

mkdir -p ../json
node md2json.js ../README.md > ../json/api.json
cat ../json/api.json
ls -l ..
ls -l ../json

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