mirror of
https://github.com/zealdocs/zeal.git
synced 2024-12-02 09:44:14 +03:00
11 lines
264 B
Bash
Executable File
11 lines
264 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Install dependencies
|
|
if [ ! -z ${INPUT_APT_DEPENDENCIES+x} ]; then
|
|
apt-get update -q -y
|
|
apt-get install -q -y --no-install-recommends ${INPUT_APT_DEPENDENCIES}
|
|
fi
|
|
|
|
# Run appimage-builder
|
|
appimage-builder --skip-test --recipe ${INPUT_RECIPE}
|