Skip to content

Commit

Permalink
fixed windows ev codesign script
Browse files Browse the repository at this point in the history
  • Loading branch information
shannah committed Feb 25, 2024
1 parent 4fdd546 commit 9b01a84
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions scripts/windows-ev-codesign.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,9 @@ mkdir -p "$EXTRACT_DIR"
# Extract the .tgz file
tar -xvzf "$TAR_FILE" -C "$EXTRACT_DIR"

# Navigate to the directory containing the JAR file
cd "$EXTRACT_DIR/package/jdeploy-bundle"

# Run the Java application
$JAVA_HOME/bin/java -jar winevcodesign-1.0-SNAPSHOT.jar \
$JAVA_HOME/bin/java -jar "$EXTRACT_DIR/package/jdeploy-bundle/winevcodesign-1.0-SNAPSHOT.jar" \
sign "$INPUT_FILE" "$OUTPUT_FILE"

# Clean up by removing the downloaded and extracted files
cd ../../..
rm -rf "$EXTRACT_DIR"
rm "$TAR_FILE"

0 comments on commit 9b01a84

Please sign in to comment.