We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42b2b19 commit e364464Copy full SHA for e364464
src/ApplicationBuilder.jl
@@ -51,7 +51,7 @@ end
51
@static if is_linux() || is_windows()
52
53
function change_dir_if_bundle()
54
- binary_path = split(string(Base.julia_cmd()), ' ')[1][2:end]
+ binary_path = PROGRAM_FILE # PROGRAM_FILE is set manually in program.c
55
newpath = dirname(dirname(binary_path))
56
cd(newpath)
57
println("New pwd = $(pwd())")
src/bundle.jl
@@ -1,8 +1,11 @@
1
-function build_app_bundle(script::String;
+if is_windows()
2
+ include("installer.jl")
3
+end
4
+function build_app_bundle(script::String;
5
resources = String[],
6
libraries = String[],
7
builddir = "builddir",
- appname = "nothing",
8
+ appname = "nothing",
9
create_installer = false)
10
11
0 commit comments