mirror of
https://github.com/vishapoberon/vipak.git
synced 2026-04-05 20:42:26 +00:00
got rid of submodules, because anonymous downloads of submodules is not
allowed via ssh.
This commit is contained in:
parent
f904807696
commit
3fed58c9e0
6 changed files with 9 additions and 20 deletions
15
.gitmodules
vendored
15
.gitmodules
vendored
|
|
@ -1,15 +0,0 @@
|
|||
[submodule "dps/opts"]
|
||||
path = dps/opts
|
||||
url = git@github.com:norayr/opts
|
||||
[submodule "dps/time"]
|
||||
path = dps/time
|
||||
url = git@github.com:norayr/time
|
||||
[submodule "lists"]
|
||||
path = lists
|
||||
url = git@github.com:norayr/lists
|
||||
[submodule "dps/lists"]
|
||||
path = dps/lists
|
||||
url = git@github.com:norayr/lists
|
||||
[submodule "dps/Internet"]
|
||||
path = dps/Internet
|
||||
url = git@github.com:norayr/Internet
|
||||
|
|
@ -1 +0,0 @@
|
|||
Subproject commit 4b330668416cb7077e640a58a366491433dbb7be
|
||||
|
|
@ -1 +0,0 @@
|
|||
Subproject commit c6736b95bf6c4852475afdad9ab48575a996e6a5
|
||||
1
dps/opts
1
dps/opts
|
|
@ -1 +0,0 @@
|
|||
Subproject commit bd8379e76433136d12423e17bfa24fd7c1ee0d6b
|
||||
1
dps/time
1
dps/time
|
|
@ -1 +0,0 @@
|
|||
Subproject commit c17a1c7d884c5238f3d532bc8943c4121b25bf88
|
||||
10
makefile
10
makefile
|
|
@ -7,9 +7,11 @@ BLD := $(mkfile_dir_path)/build
|
|||
VOC = voc
|
||||
VERSION_FILE = ./VersionFile.json
|
||||
BLD = build
|
||||
DPS = dps
|
||||
VIPACK = vipack
|
||||
|
||||
all:
|
||||
|
||||
all: fetch_deps
|
||||
#git submodule init
|
||||
#git submodule update
|
||||
mkdir -p $(build_dir_path)
|
||||
|
|
@ -39,6 +41,12 @@ all:
|
|||
../src/vpkInstaller.Mod \
|
||||
../src/vipack.Mod -m
|
||||
|
||||
fetch_deps:
|
||||
cd $(DPS) && git clone https://github.com/norayr/Internet
|
||||
cd $(DPS) && git clone https://github.com/norayr/lists
|
||||
cd $(DPS) && git clone https://github.com/norayr/opts
|
||||
cd $(DPS) && git clone https://github.com/norayr/time
|
||||
|
||||
tests:
|
||||
mkdir -p $(BLD)
|
||||
cd $(BLD) && $(VOC) -s ../src/unix/vpkFiles.Mod ../tst/testFiles.Mod -m
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue