Compare commits

..

No commits in common. "10deb58fcbd8370059f498a6584ccbc6e3842d32" and "5569d7039883b82af5b444be1d5acfa24efe9487" have entirely different histories.

2 changed files with 6 additions and 8 deletions

View File

@ -2,12 +2,6 @@
# Change Log # Change Log
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
## 2023-04-26
### Changed
- **The site can now be accessed through a more memorable URL, which is [helper-scripts.com](http://helper-scripts.com).**
## 2023-04-23 ## 2023-04-23
### Changed ### Changed

View File

@ -30,8 +30,12 @@ $STD npm install -g pnpm
msg_ok "Installed Node.js" msg_ok "Installed Node.js"
msg_info "Installing Homepage (Patience)" msg_info "Installing Homepage (Patience)"
cd /opt RELEASE=$(curl -s https://api.github.com/repos/benphelps/homepage/releases/latest | grep "tag_name" | awk '{print substr($2, 3, length($2)-4) }')
$STD git clone https://github.com/benphelps/homepage.git wget -q https://github.com/benphelps/homepage/archive/refs/tags/v${RELEASE}.tar.gz
$STD tar -xvf v${RELEASE}.tar.gz
mkdir -p /opt/homepage
cp -r homepage-${RELEASE}/* /opt/homepage
rm -rf v${RELEASE}.tar.gz homepage-${RELEASE}
cd /opt/homepage cd /opt/homepage
mkdir -p config mkdir -p config
cp /opt/homepage/src/skeleton/* /opt/homepage/config cp /opt/homepage/src/skeleton/* /opt/homepage/config