-
-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: fix wrong version mapping, add f-droid build script
- Loading branch information
1 parent
03d8cb5
commit cf5b81d
Showing
14 changed files
with
30 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
* Hinzufügen von Build-Skript für F-Droid |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
* Add build script for F-Droid |
This file was deleted.
Oops, something went wrong.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
#!/usr/bin/env bash | ||
set -Eeuo pipefail | ||
|
||
__script_dir=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd ) | ||
|
||
readonly __script_dir | ||
|
||
pushd "$__script_dir/../" | ||
|
||
pushd packages/paperless_api | ||
$$flutter$$/bin/flutter packages pub get | ||
$$flutter$$/bin/dart run build_runner build --delete-conflicting-outputs | ||
popd | ||
|
||
pushd packages/mock_server | ||
$$flutter$$/bin/flutter packages pub get | ||
popd | ||
|
||
$$flutter$$/bin/flutter packages pub get | ||
$$flutter$$/bin/flutter gen-l10n | ||
$$flutter$$/bin/dart run build_runner build --delete-conflicting-outputs | ||
|
||
popd | ||
|