mirror of
https://codeberg.org/vegvisir/install.git
synced 2025-09-14 00:33:41 +02:00
Compare commits
No commits in common. "fbeba8c348e77efd4ce3cb003e204bd7659e25f0" and "658da80e0334e566eb829da8c8e2b2ae9895ba3b" have entirely different histories.
fbeba8c348
...
658da80e03
2 changed files with 4 additions and 9 deletions
|
@ -9,5 +9,5 @@ The script will only run on Linux environments with `coreutils` installed (for n
|
|||
2. Run this command from the root directory of your local repository
|
||||
|
||||
```sh
|
||||
curl -fsSL https://href.vlw.se/vegvisir/install | bash
|
||||
curl -fsSL https://codeberg.org/vegvisir/install/raw/branch/master/install.sh | sh
|
||||
```
|
11
install.sh
11
install.sh
|
@ -32,11 +32,6 @@ check_sys_depend() {
|
|||
}
|
||||
|
||||
install_vegvisir() {
|
||||
if ! [ -d ".git" ] ; then
|
||||
echo_err "Not in a git repository"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if ! [ -d "vegvisir" ] ; then
|
||||
git submodule add https://codeberg.org/vegvisir/vegvisir
|
||||
fi
|
||||
|
@ -63,7 +58,7 @@ configure_vegvisir() {
|
|||
# A configuration file already exists
|
||||
if [ -f "vegvisir/.env.ini" ] ; then
|
||||
echo "A Vegvisir configuration file already exists at: ${cwd}/vegvisir/.env.ini"
|
||||
read -p "Do you want to overwrite this file? (y/n): " choice </dev/tty
|
||||
read -p "Do you want to overwrite this file? (y/n): " choice
|
||||
|
||||
# Check the user's response
|
||||
if [[ "$choice" == "y" || "$choice" == "Y" ]] ; then
|
||||
|
@ -157,7 +152,7 @@ main() {
|
|||
configure_vegvisir
|
||||
|
||||
echo "Vegvisir has been sucessfully installed."
|
||||
read -p "Do you want to generate a simple example website to start from? (y/n): " choice </dev/tty
|
||||
read -p "Do you want to generate a simple example website to start from? (y/n): " choice
|
||||
|
||||
# Check the user's response
|
||||
if [[ "$choice" == "y" || "$choice" == "Y" ]] ; then
|
||||
|
@ -169,7 +164,7 @@ main() {
|
|||
|
||||
# Prompt the user for confirmation
|
||||
echo "You are currently in: ${cwd}"
|
||||
read -p "Do you want to proceed with the installation in this directory? (y/n): " choice </dev/tty
|
||||
read -p "Do you want to proceed with the installation in this directory? (y/n): " choice
|
||||
|
||||
# Check the user's response
|
||||
if [[ "$choice" == "y" || "$choice" == "Y" ]] ; then
|
||||
|
|
Loading…
Add table
Reference in a new issue