mirror of
https://github.com/GitJournal/GitJournal.git
synced 2025-08-06 15:21:21 +08:00
16 lines
308 B
Bash
Executable File
16 lines
308 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# SPDX-FileCopyrightText: 2019-2021 Vishesh Handa <me@vhanda.in>
|
|
#
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
set -eux
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
flutter config --enable-linux-desktop
|
|
flutter build linux
|
|
|
|
sed -i "s|_CODE_PATH_|$(pwd)|" AppImageBuilder.yml
|
|
appimage-builder --skip-test
|