10 lines
103 B
Plaintext
10 lines
103 B
Plaintext
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
if [[ "$1" ]] ; then
|
||
|
|
modules="$1"
|
||
|
|
else
|
||
|
|
modules=all
|
||
|
|
fi
|
||
|
|
|
||
|
|
py3-cmd refresh "$modules"
|