Skip to content

Commit

Permalink
Create make-chromium.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
kenhendricks00 authored Oct 22, 2024
1 parent 5691748 commit 30aa38c
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions tools/make-chromium.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#!/usr/bin/env bash

set -e

# Define build destination
DES=dist/build/FMHY-SafeGuard.chromium
rm -rf $DES
mkdir -p $DES

# Copy files specific to Chrome extension
cp -R platform/chromium/* $DES/

# Create a versioned ZIP package
pushd dist/build
zip -r FMHY-SafeGuard_"$1".chromium.zip FMHY-SafeGuard.chromium
popd

0 comments on commit 30aa38c

Please sign in to comment.