Browse Source

Fix repo builder to use submodules

master
Macoy Madson 2 years ago
parent
commit
cd5f633f75
  1. 11
      GitConvenience/MakeCakelispGameLibRepo.sh

11
GitConvenience/MakeCakelispGameLibRepo.sh

@ -1,12 +1,15 @@
#!/bin/sh
git init
mkdir src
mkdir Dependencies
cd Dependencies
git clone git@github.com:makuto/cakelisp.git
git clone gitea@macoy.me:macoy/gamelib.git
cd ../
git submodule add git@github.com:makuto/cakelisp.git Dependencies/cakelisp
git submodule add gitea@macoy.me:macoy/gamelib.git Dependencies/gamelib
cp Dependencies/cakelisp/COPYING .
cp Dependencies/cakelisp/LICENSE .
touch ReadMe.org
git add .
git commit -m"Initial commit"

Loading…
Cancel
Save