* Use native-windows-gui crate to manage tray icon Adds log file support on Windows * Log file location now works like other paths * Removed context builder * Context --> App * Removed mount URLs from App * Switch to a nicer crate for forking daemon * Handle errors from notify_ready * Add application icon to all Windows Polaris executables, not just those created by the release script * Add build.rs to release tarball * Create PID file parent directory if necessary
12 lines
355 B
Bash
Executable file
12 lines
355 B
Bash
Executable file
#!/bin/sh
|
|
echo "Creating output directory"
|
|
mkdir -p release/tmp/polaris
|
|
|
|
echo "Copying package files"
|
|
cp -r web docs/swagger src migrations test-data build.rs Cargo.toml Cargo.lock rust-toolchain res/unix/Makefile release/tmp/polaris
|
|
|
|
echo "Creating tarball"
|
|
tar -zc -C release/tmp -f release/polaris.tar.gz polaris
|
|
|
|
echo "Cleaning up"
|
|
rm -rf release/tmp
|