Skip to content

Commit

Permalink
v1.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
9001 committed May 19, 2023
1 parent feed773 commit 420698a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion r0c/__version__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = (1, 4, 1)
VERSION = (1, 4, 2)
BUILD_DT = (2023, 5, 19)

S_VERSION = u".".join(map(str, VERSION))
Expand Down
2 changes: 1 addition & 1 deletion scripts/rls.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ f=~/dev/r0c/dist/r0c.py
min=999999
while true; do
./make-sfx.sh
s=$(stat -c%s $f)
s=$(stat -c%s $f || gstat -c%s $f)
[ $s -lt $min ] ||
continue

Expand Down
2 changes: 1 addition & 1 deletion scripts/sfx.py
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ def unpack():
opj = os.path.join
ofe = os.path.exists
final = opj(top, name)
san = opj(final, "copyparty/up2k.py")
san = opj(final, "site-packages/r0c/ivt100.py")
for suf in range(0, 9001):
withpid = "{0}.{1}.{2}".format(name, os.getpid(), suf)
mine = opj(top, withpid)
Expand Down

0 comments on commit 420698a

Please sign in to comment.