Skip to content

Commit ad98bfc

Browse files
committed
hide messages
1 parent 2eebc4a commit ad98bfc

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

ide/nuvfile.yml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -112,12 +112,13 @@ tasks:
112112
fi
113113
fi
114114
- |
115-
PIP_FLAG="--user"
116-
if which python3 | grep $HOME
117-
then PIP_FLAG=""
118-
fi
119115
if ! python3 -m pip list | grep watchfiles >/dev/null 2>/dev/null
120-
then python3 -m pip install $PIP_FLAG watchfiles asyncio
116+
then
117+
PIP_FLAG="--user"
118+
if which python3 | grep $HOME >/dev/null
119+
then PIP_FLAG=""
120+
fi
121+
python3 -m pip install $PIP_FLAG watchfiles asyncio
121122
fi
122123
- |
123124
if ! which http-server >/dev/null 2>/dev/null
@@ -126,7 +127,7 @@ tasks:
126127
- task: kill
127128

128129
kill:
129-
silent: false
130+
silent: true
130131
ignore: true
131132
cmds:
132133
- |
@@ -142,7 +143,7 @@ tasks:
142143
do
143144
echo Terminating $PID in $GRP
144145
if test "$GRP" = "$PGRP"
145-
then echo $GRP $PID
146+
then #echo $GRP $PID
146147
kill -9 "$PID"
147148
LOOP=true
148149
fi

0 commit comments

Comments
 (0)