add color to svg

This commit is contained in:
2024-10-19 16:36:47 -05:00
parent 9c33a61570
commit aebd25dc16
16 changed files with 318 additions and 142 deletions

View File

@@ -1,22 +1,22 @@
#!/bin/bash
# Create a temporary directory to hold the files
mkdir -p /tmp/nkodeapi
cp -r ./core/* /tmp/nkodeapi/
cp -r ./hashset/* /tmp/nkodeapi/
cp -r ./py-builtin/* /tmp/nkodeapi/
cp -r ./util/* /tmp/nkodeapi/
cp go.mod /tmp/nkodeapi/
cp main.go /tmp/nkodeapi/
#mkdir -p /tmp/nkodeapi
#
#cp -r ./core/* /tmp/nkodeapi/
#cp -r ./hashset/* /tmp/nkodeapi/
#cp -r ./py-builtin/* /tmp/nkodeapi/
#cp -r ./util/* /tmp/nkodeapi/
#
#cp go.mod /tmp/nkodeapi/
#cp main.go /tmp/nkodeapi/
# Disable extended attributes and create the tar file
export COPYFILE_DISABLE=1
tar -cvf go-nkode.tar -C /tmp nkodeapi
tar -cvf go-nkode.tar -C ../ go-nkode
# Clean up the temporary directory after the archive is created
rm -rf /tmp/webapp
scp go-nkode.tar dkelly@api.nkode.tech:/home/dkelly
rm go-nkode.tar