removing the launcher from info.rkt to avoid permission issues
This commit is contained in:
parent
f0ccc5c512
commit
7d1d93f8ac
12
info.rkt
12
info.rkt
|
@ -7,8 +7,16 @@
|
||||||
(define categories '(devtools))
|
(define categories '(devtools))
|
||||||
(define repositories '("4.x"))
|
(define repositories '("4.x"))
|
||||||
(define required-core-version "5.1.1")
|
(define required-core-version "5.1.1")
|
||||||
(define racket-launcher-libraries '("whalesong.rkt"))
|
|
||||||
(define racket-launcher-names '("whalesong"))
|
;; I am disabling the automatic launchers: it's causing issues with
|
||||||
|
;; file permissions. The program "make-launcher.rkt" will build a
|
||||||
|
;; whalesong launcher, so I need to revise the instructions to use it
|
||||||
|
;; instead.
|
||||||
|
;;
|
||||||
|
;; (define racket-launcher-libraries '("whalesong.rkt"))
|
||||||
|
;; (define racket-launcher-names '("whalesong"))
|
||||||
|
;;
|
||||||
|
|
||||||
(define homepage "http://hashcollision.org/whalesong")
|
(define homepage "http://hashcollision.org/whalesong")
|
||||||
(define scribblings '(("scribblings/manual.scrbl")))
|
(define scribblings '(("scribblings/manual.scrbl")))
|
||||||
(define compile-omit-paths '("tests"
|
(define compile-omit-paths '("tests"
|
||||||
|
|
|
@ -469,6 +469,9 @@ var invokeMainModule = function() {
|
||||||
invoke(MACHINE,
|
invoke(MACHINE,
|
||||||
function() {
|
function() {
|
||||||
var startTime = new Date().valueOf();
|
var startTime = new Date().valueOf();
|
||||||
|
if (window.console && window.console.log) {
|
||||||
|
window.console.log("invoking main modules");
|
||||||
|
}
|
||||||
plt.runtime.invokeMains(
|
plt.runtime.invokeMains(
|
||||||
MACHINE,
|
MACHINE,
|
||||||
function() {
|
function() {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user