mirror of
https://github.com/Control-D-Inc/ctrld.git
synced 2026-02-03 22:18:39 +00:00
Reducing the size of the final binaries, except for darwin, where the packed binaries failed to run.
8 lines
93 B
Bash
Executable File
8 lines
93 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -ex
|
|
|
|
for dist_dir in ./dist/ctrld*; do
|
|
upx --brute "${dist_dir}/ctrld"
|
|
done
|