mirror of
https://github.com/bpozdena/OneDriveGUI.git
synced 2025-04-19 04:22:15 +03:00
53 lines
1.3 KiB
Bash
Executable File
53 lines
1.3 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# Step 1: Function to extract version from OneDriveGUI.py without importing
|
|
get_version() {
|
|
FILE_PATH="src/OneDriveGUI.py"
|
|
VERSION=$(grep -Po '^__version__\s*=\s*"\K[^\"]+' "$FILE_PATH")
|
|
|
|
if [ -z "$VERSION" ]; then
|
|
echo "Failed to extract version from $FILE_PATH"
|
|
exit 1
|
|
fi
|
|
|
|
echo "Extracted version: $VERSION"
|
|
}
|
|
|
|
# Step 2: Update the indented version line in AppImageBuilder.yml
|
|
update_yaml() {
|
|
YAML_FILE="AppImageBuilder.yml"
|
|
|
|
if [ -f "$YAML_FILE" ]; then
|
|
echo "Updating version in $YAML_FILE..."
|
|
# Use sed to match the indented version line and update it
|
|
sed -i "s/^\(\s\+version:\s\).*/\1$VERSION/" "$YAML_FILE"
|
|
echo "Version updated to $VERSION in the indented version line of $YAML_FILE"
|
|
else
|
|
echo "$YAML_FILE not found."
|
|
exit 1
|
|
fi
|
|
}
|
|
|
|
# Step 3: Build the AppImage using appimage-builder
|
|
build_appimage() {
|
|
if ! command -v appimage-builder &> /dev/null; then
|
|
echo "appimage-builder could not be found. Please install it first."
|
|
exit 1
|
|
fi
|
|
|
|
echo "Building AppImage..."
|
|
appimage-builder --recipe "$YAML_FILE"
|
|
|
|
if [ $? -eq 0 ]; then
|
|
echo "AppImage build succeeded!"
|
|
else
|
|
echo "AppImage build failed."
|
|
exit 1
|
|
fi
|
|
}
|
|
|
|
# Main script execution
|
|
get_version
|
|
update_yaml
|
|
build_appimage
|