mirror of
https://github.com/Davilarek/Vencord.git
synced 2025-05-10 17:35:41 +02:00
Add scripts to copy
This commit is contained in:
parent
68b09536dc
commit
b5a8fbf506
2 changed files with 12 additions and 0 deletions
5
copy-build.bat
Normal file
5
copy-build.bat
Normal file
|
@ -0,0 +1,5 @@
|
|||
@echo off
|
||||
set destination_folder="C:\Users\davil\AppData\Roaming\ArmCord\plugins\1loader\dist"
|
||||
set source_folder=".\dist"
|
||||
xcopy /Y /E "%source_folder%\browser.js" "%destination_folder%\bundle.js"
|
||||
xcopy /Y /E "%source_folder%\browser.css" "%destination_folder%\bundle.css"
|
7
copy-build.sh
Normal file
7
copy-build.sh
Normal file
|
@ -0,0 +1,7 @@
|
|||
#!/bin/bash
|
||||
|
||||
destination_folder="$HOME/.config/ArmCord/plugins/1loader/dist"
|
||||
source_folder="./dist"
|
||||
|
||||
cp -f "$source_folder/browser.js" "$destination_folder/bundle.js"
|
||||
cp -f "$source_folder/browser.css" "$destination_folder/bundle.css"
|
Loading…
Add table
Add a link
Reference in a new issue