Cleaned obsolete files

This commit is contained in:
kexkey
2018-12-11 16:56:11 -05:00
parent 0284f177a0
commit fb3b421f20
2 changed files with 7 additions and 14 deletions

17
dist/setup.sh vendored
View File

@@ -486,7 +486,6 @@ install_docker() {
fi
copy_file $sourceDataPath/installer/docker/docker-compose.yaml docker-compose.yaml
copy_file $sourceDataPath/installer/testinstall.sh testinstall.sh 0
copy_file $sourceDataPath/installer/testfeatures.sh testfeatures.sh 0
copy_file $sourceDataPath/installer/start.sh start.sh 0
copy_file $sourceDataPath/installer/stop.sh stop.sh 0
@@ -503,17 +502,11 @@ install_docker() {
next
fi
if [[ ! -x testinstall.sh ]]; then
step " make testinstall.sh executable"
try chmod +x testinstall.sh
next
fi
if [[ ! -x testfeatures.sh ]]; then
step " make testfeatures.sh executable"
try chmod +x testfeatures.sh
next
fi
if [[ ! -x testfeatures.sh ]]; then
step " make testfeatures.sh executable"
try chmod +x testfeatures.sh
next
fi
}
check_directory_owner() {

View File

@@ -123,8 +123,8 @@ module.exports = {
},
templates: function( props ) {
if( props.installer_mode === 'docker' ) {
return ['config.sh','start.sh', 'stop.sh', 'testinstall.sh', 'testfeatures.sh', path.join('docker', 'docker-compose.yaml')];
return ['config.sh','start.sh', 'stop.sh', 'testfeatures.sh', path.join('docker', 'docker-compose.yaml')];
}
return ['config.sh','start.sh', 'stop.sh', 'testinstall.sh', 'testfeatures.sh'];
return ['config.sh','start.sh', 'stop.sh', 'testfeatures.sh'];
}
};