From: 平田健悟 Date: Thu, 2 Feb 2017 06:29:07 +0000 (+0900) Subject: Add initEnv.sh for first trial after download. X-Git-Tag: v0.3.0p0062^2~1 X-Git-Url: http://git.osdn.net/view?p=eos%2Fzephyr.git;a=commitdiff_plain;h=c3fc9d74449e93ac680e970421c58ccc56c9356f Add initEnv.sh for first trial after download. new file: initEnv.sh --- diff --git a/initEnv.sh b/initEnv.sh new file mode 100755 index 0000000..dac7ad4 --- /dev/null +++ b/initEnv.sh @@ -0,0 +1,9 @@ +#!/bin/bash + +for i in node_modules/ front-end/typings/ user-specific-files/OptionControlFile/ user-specific-files/meta/ user-specific-files/workspace/ user-specific-files/workspace.debug/ user-specific-files/db/ user-specific-files/tmp/ ; do + echo $i; + if [ ! -d $i ] ; then + echo "$i is created." ; + mkdir $i; + fi +done