mirror of
https://github.com/livebook-dev/livebook.git
synced 2024-12-26 01:14:14 +08:00
Fix launcher script (#888)
The idea was to leave trailing `\` for bash but it needs to be escaped! The script worked fine fwiw.
This commit is contained in:
parent
a326161e6b
commit
3c48fff159
1 changed files with 2 additions and 2 deletions
|
@ -142,8 +142,8 @@ defmodule AppBuilder.MacOS do
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
set -e
|
set -e
|
||||||
root=$(dirname $(dirname "$0"))
|
root=$(dirname $(dirname "$0"))
|
||||||
$root/Resources/rel/bin/#{release_name} start \
|
$root/Resources/rel/bin/#{release_name} start \\
|
||||||
1>> ~/Library/Logs/#{app_name}.stdout.log \
|
1>> ~/Library/Logs/#{app_name}.stdout.log \\
|
||||||
2>> ~/Library/Logs/#{app_name}.stderr.log
|
2>> ~/Library/Logs/#{app_name}.stderr.log
|
||||||
"""
|
"""
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue