주석 추가

This commit is contained in:
leedongmyung[desktop] 2023-11-05 08:17:29 +09:00
parent c36a9faf46
commit 174b6f5e0a
2 changed files with 4 additions and 0 deletions

View file

@ -15,7 +15,9 @@ set /p REV_NEW=<git_rev.txt
IF %REV_OLD%==%REV_NEW% set RESULT=TRUE
IF NOT %REV_OLD%==%REV_NEW% set RESULT=FALSE
:: 파일로 출력
: echo %RESULT% > result.txt
:: 파일에 내용 읽기
: set /p RESULT=<result.txt
IF "%RESULT%"=="FALSE" flutter clean && flutter pub upgrade --major-versions && flutter packages upgrade && flutter pub get && flutter pub run build_runner build --delete-conflicting-outputs

View file

@ -19,7 +19,9 @@ if [ ${REV_OLD} -ne ${REV_NEW} ] ; then
RESULT=TRUE
fi
#파일로 출력
#echo $RESULT > result.txt
#파일에 내용 읽기
#RESULT=$(head -n 1 result.txt)
if [ ${RESULT} == "TRUE" ] ; then