Commit 01ed28c4a84031847fa4d524bf63d32431a643c8

Authored by 김태훈
1 parent cc835a688b
Exists in master and in 2 other branches fhd, fhd-demo

app 빌드 후 application.tar를 만드는 스크립트 추가

Showing 1 changed file with 15 additions and 0 deletions   Show diff stats
scripts/pack-app.sh
... ... @@ -0,0 +1,15 @@
  1 +#!/bin/sh
  2 +
  3 +if [ $(basename $PWD) = "scripts" ]; then
  4 + cd ..
  5 +fi
  6 +
  7 +cd app
  8 +./make.sh
  9 +cd -
  10 +
  11 +cp -rf files/* app/release/
  12 +
  13 +cd app/release/
  14 +../../scripts/mk-app.sh
  15 +cd -
... ...