Files
renderdoc/util/buildscripts/scripts/make_package.sh
T
2018-05-02 17:33:56 +01:00

14 lines
187 B
Bash

#!/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