fix bug in `raco unpack'
due to recent conversion from `mzscheme' to `racket/base'
This commit is contained in:
parent
733d6b97ff
commit
fcf24ab586
|
@ -218,7 +218,7 @@
|
||||||
(if (file-exists? path)
|
(if (file-exists? path)
|
||||||
(if (eq? kind 'file)
|
(if (eq? kind 'file)
|
||||||
#f
|
#f
|
||||||
(open-output-file path 'truncate))
|
(open-output-file path #:exists 'truncate))
|
||||||
(open-output-file path)))])
|
(open-output-file path)))])
|
||||||
(when (and write? (not out))
|
(when (and write? (not out))
|
||||||
(print-status (format " skipping ~a; already exists" (pretty-name path))))
|
(print-status (format " skipping ~a; already exists" (pretty-name path))))
|
||||||
|
|
Loading…
Reference in New Issue
Block a user