mirror of
https://github.com/Shik3i/KoalaSync.git
synced 2026-07-26 12:08:15 +00:00
13 lines
517 B
Bash
Executable File
13 lines
517 B
Bash
Executable File
#!/bin/sh
|
|
# KoalaSync - Protocol Synchronization Script (Linux/macOS)
|
|
#
|
|
# This script copies the master constants.js file from the shared directory
|
|
# to the extension directory. Since Chrome Extensions cannot load files
|
|
# outside their root, this manual sync is required after any changes to
|
|
# the shared protocol.
|
|
|
|
mkdir -p extension/shared
|
|
cp shared/constants.js extension/shared/constants.js
|
|
cp shared/blacklist.js extension/shared/blacklist.js
|
|
echo "✓ constants.js and blacklist.js synced to extension/shared/"
|