disable neochan by default
This commit is contained in:
parent
cd803852e7
commit
3c4ad2fe50
@ -1,8 +1,8 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
neochan="yes"
|
|
||||||
if [ "$1" == "--disable-neochan" ] ; then
|
|
||||||
neochan="no"
|
neochan="no"
|
||||||
|
if [ "$1" == "--enable-neochan" ] ; then
|
||||||
|
neochan="yes"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
root=$(readlink -e "$(dirname "$0")")
|
root=$(readlink -e "$(dirname "$0")")
|
||||||
|
6
build.sh
6
build.sh
@ -25,12 +25,12 @@ ipfs="no"
|
|||||||
rebuildjs="yes"
|
rebuildjs="yes"
|
||||||
_next=""
|
_next=""
|
||||||
unstable="no"
|
unstable="no"
|
||||||
neochan="yes"
|
neochan="no"
|
||||||
# check for build flags
|
# check for build flags
|
||||||
for arg in "$@" ; do
|
for arg in "$@" ; do
|
||||||
case $arg in
|
case $arg in
|
||||||
"--disable-neochan")
|
"--enable-neochan")
|
||||||
neochan="no"
|
neochan="yes"
|
||||||
;;
|
;;
|
||||||
"--unstable")
|
"--unstable")
|
||||||
unstable="yes"
|
unstable="yes"
|
||||||
|
Reference in New Issue
Block a user