Commit eeb81561 authored by Yann Garcia's avatar Yann Garcia
Browse files

Bug fixed in import of libzip for Alpine-linux

parent 38d46497
Loading
Loading
Loading
Loading
Loading
+4 −4
Original line number Original line Diff line number Diff line
@@ -33,10 +33,10 @@ fi


case "$1" in
case "$1" in
  build)
  build)
    cd ${GEN_DIR} && make
    cd ${GEN_DIR} && sed --in-place 's/lzip/lz/g' ./Makefile && make
    ;;
    ;;
  clean)
  clean)
    cd ${GEN_DIR} && make clean
    cd ${GEN_DIR} && sed --in-place 's/lzip/lz/g' ./Makefile && make clean
    ;;
    ;;
  ip)
  ip)
    ip address
    ip address
@@ -51,10 +51,10 @@ case "$1" in
    sudo ping $2
    sudo ping $2
    ;;
    ;;
  rebuild)
  rebuild)
    cd ${GEN_DIR} && rm -fr ./bin ./build ; make
    cd ${GEN_DIR} && rm -fr ./bin ./build ; sed --in-place 's/lzip/lz/g' ./Makefile ; make
    ;;
    ;;
  build-run)
  build-run)
    d ${GEN_DIR}/scripts && ./run_all.bash 0
    d ${GEN_DIR}/scripts && sed --in-place 's/lzip/lz/g' ./Makefile && ./run_all.bash 0
    ;;
    ;;
  run)
  run)
    cd ${GEN_DIR}/scripts && ./run_all.bash
    cd ${GEN_DIR}/scripts && ./run_all.bash
+0 −5
Original line number Original line Diff line number Diff line
@@ -13,8 +13,3 @@ docker run --rm -it \
        --mount type=bind,source=$HOME/var,target=/home/etsi/var,readonly \
        --mount type=bind,source=$HOME/var,target=/home/etsi/var,readonly \
        --entrypoint $HOME/dev/$PRJ/virtualization/docker/docker-entrypoint.sh \
        --entrypoint $HOME/dev/$PRJ/virtualization/docker/docker-entrypoint.sh \
        alpine-its:latest "$@"
        alpine-its:latest "$@"

#        -p 0.0.0.0:30181:30181 \
#        -p 0.0.0.0:8000-8900:8000-8900 \
#        -p 0.0.0.0:80:80 \
#        -p 0.0.0.0:443:443 \