Simplify outputted unix scripts
This commit is contained in:
parent
a94e179efb
commit
b6325699a4
|
|
@ -169,7 +169,8 @@
|
|||
(cond
|
||||
((symbol=? compilation-target 'windows) "%0%")
|
||||
((symbol=? compilation-target 'php) "$binname")
|
||||
(else "$(cd -- \"$(dirname \"$0\")\" >/dev/null 2>&1 && pwd -P)/\"$0\""))
|
||||
(else "\"$0\""))
|
||||
;(else "$(cd -- \"$(dirname \"$0\")\" >/dev/null 2>&1 && pwd -P)/\"$0\""))
|
||||
(cond
|
||||
((symbol=? compilation-target 'windows) "")
|
||||
((symbol=? compilation-target 'php) "")
|
||||
|
|
|
|||
|
|
@ -1,6 +1,10 @@
|
|||
(import (scheme base)
|
||||
(scheme read)
|
||||
(scheme write))
|
||||
(scheme write)
|
||||
(retropikzel cgi))
|
||||
|
||||
(display "Test successfull")
|
||||
(newline)
|
||||
|
||||
(display (cgi))
|
||||
(newline)
|
||||
|
|
|
|||
Loading…
Reference in New Issue