Skip to content

Commit 36456bd

Browse files
authored
Update expander.py
expanderがyukicoderで失敗するのを修正
1 parent 0804402 commit 36456bd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

expander.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ def read_source(f: str, prefix: str, defined: set, lib_path, is_main=True,
241241
zs = {:d}
242242
block:
243243
let (output, ex) = gorgeEx("if [ -e ./atcoder ]; then exit 1; else exit 0; fi")
244-
doAssert ex == 0, "atcoder directory already exisits"
244+
# doAssert ex == 0, "atcoder directory already exisits"
245245
block:
246246
let (output, ex) = gorgeEx("tail -c " & $zs & " " & fn & " > atcoder.tar.xz")
247247
doAssert ex == 0, "tail failed"
@@ -275,7 +275,7 @@ def read_source(f: str, prefix: str, defined: set, lib_path, is_main=True,
275275
let fn = getFileName()
276276
block:
277277
let (output, ex) = gorgeEx("if [ -e ./atcoder ]; then exit 1; else exit 0; fi")
278-
doAssert ex == 0, "atcoder directory already exisits"
278+
# doAssert ex == 0, "atcoder directory already exisits"
279279
discard staticExec("echo \\"{:s}\\" | base64 -d > atcoder.tar.xz && tar -Jxvf atcoder.tar.xz")
280280
let (output, ex) = gorgeEx("{:s} " & fn)
281281
discard staticExec("rm -rf ./atcoder");doAssert ex == 0, output;quit(0)

0 commit comments

Comments
 (0)