File tree Expand file tree Collapse file tree 1 file changed +6
-8
lines changed
Expand file tree Collapse file tree 1 file changed +6
-8
lines changed Original file line number Diff line number Diff line change @@ -10,11 +10,10 @@ clone() {
1010 repo=$( echo $line | cut -f1 -d" " | sed ' s/https:\/\//git@/' | sed ' s/\//:/' )
1111 id=$( echo $line | cut -f2 -d" " )
1212 git clone $repo $id
13- if command -v poetry & > /dev/null
13+ if command -v uv & > /dev/null
1414 then
15- poetry env use python3.10
16- poetry lock
17- poetry install
15+ uv venv python3.10 --clear
16+ uv sync
1817 npm install
1918 fi
2019 done
@@ -30,11 +29,10 @@ pull() {
3029 id=$( echo $line | cut -f2 -d" " )
3130 cd $id
3231 git pull
33- if command -v poetry && command -v npm & > /dev/null
32+ if command -v uv && command -v npm & > /dev/null
3433 then
35- poetry env use python3.10
36- poetry lock
37- poetry install
34+ uv venv python3.10 --clear
35+ uv sync
3836 npm install
3937 fi
4038 cd ..
You can’t perform that action at this time.
0 commit comments