mirror of
https://github.com/livebook-dev/livebook.git
synced 2025-02-23 14:27:15 +08:00
24 lines
649 B
Bash
Executable file
24 lines
649 B
Bash
Executable file
#!/bin/sh
|
|
set -euo pipefail
|
|
|
|
. `dirname $0`/env.sh
|
|
|
|
rm -rf $target_dir
|
|
dotnet publish Livebook.csproj $build_args
|
|
|
|
(
|
|
cd ../../..
|
|
mix release app --overwrite --path=${target_dir}/rel
|
|
)
|
|
|
|
vc_redist_path="bin/vc_redist.x64.exe"
|
|
if [ ! -f $vc_redist_path ]; then
|
|
url="https://aka.ms/vs/17/release/vc_redist.x64.exe"
|
|
echo "downloading $url"
|
|
curl -L --fail --output $vc_redist_path $url
|
|
fi
|
|
|
|
makensis \
|
|
//DERTS_VERSION=`elixir -e "IO.puts :erlang.system_info(:version)"` \
|
|
//DLIVEBOOK_VERSION=`elixir -e "Mix.start() ; Mix.Project.in_project(:livebook, \"../../..\", fn _ -> IO.puts Mix.Project.config()[:version] end)"` \
|
|
Installer.nsi
|