We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent feed773 commit 420698aCopy full SHA for 420698a
3 files changed
r0c/__version__.py
@@ -1,4 +1,4 @@
1
-VERSION = (1, 4, 1)
+VERSION = (1, 4, 2)
2
BUILD_DT = (2023, 5, 19)
3
4
S_VERSION = u".".join(map(str, VERSION))
scripts/rls.sh
@@ -26,7 +26,7 @@ f=~/dev/r0c/dist/r0c.py
26
min=999999
27
while true; do
28
./make-sfx.sh
29
- s=$(stat -c%s $f)
+ s=$(stat -c%s $f || gstat -c%s $f)
30
[ $s -lt $min ] ||
31
continue
32
scripts/sfx.py
@@ -263,7 +263,7 @@ def unpack():
263
opj = os.path.join
264
ofe = os.path.exists
265
final = opj(top, name)
266
- san = opj(final, "copyparty/up2k.py")
+ san = opj(final, "site-packages/r0c/ivt100.py")
267
for suf in range(0, 9001):
268
withpid = "{0}.{1}.{2}".format(name, os.getpid(), suf)
269
mine = opj(top, withpid)
0 commit comments