mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-04 17:10:47 +00:00
14 lines
187 B
Bash
Executable File
14 lines
187 B
Bash
Executable File
#!/bin/bash
|
|
|
|
## Packaging is platform-specific, dispatch to helper
|
|
|
|
if [ "$(uname)" == "Linux" ]; then
|
|
|
|
./scripts/make_package_linux.sh $1
|
|
|
|
else
|
|
|
|
./scripts/make_package_win32.sh $1
|
|
|
|
fi
|