mirror of
https://github.com/ChonDoit/treble_superior_patches.git
synced 2024-11-13 14:29:29 +00:00
6 lines
92 B
Bash
6 lines
92 B
Bash
#!/bin/bash
|
|
|
|
for file in `ls ~/ | grep xz` ; do
|
|
gh release upload --clobber $1 ~/$file
|
|
done
|