This prebuild.sh ain't used anymoar

This commit is contained in:
Alexandre Aubin 2019-04-29 21:50:54 +02:00
parent 10af5d7a20
commit dfe49ea191

View file

@ -1,19 +0,0 @@
#!/bin/bash
# Compute box name
BOX="ynh-dev"
# Create box
vagrant up $BOX --provider=lxc
# Package box
vagrant package $BOX --output /tmp/$BOX.box
# Destroy current box
vagrant destroy $BOX
# User message, and exit
echo ""
echo "Your Vagrant box was packaged to /tmp/$BOX.box"
echo "You might want to run : vagrant box add 'yunohost/ynh-dev' /tmp/$BOX.box"
exit