fix line ending issue

This commit is contained in:
James Swineson 2022-09-16 09:11:36 +08:00
parent c83063441d
commit 68fe060029
2 changed files with 6 additions and 6 deletions

View File

@ -5,7 +5,7 @@ Disables the "No valid subscription" dialog on all Proxmox products.
## Features
Works for:
- Proxmox VE (5.x or later, tested up to 7.0)
- Proxmox VE (5.x or later, tested up to 7.2)
- Proxmox Mail Gateway (5.x or later)
- Proxmox Backup Server (1.x)
@ -49,6 +49,6 @@ Run everything as root on a Debian 10 system:
```shell
apt-get install ruby ruby-dev rubygems build-essential
gem install --no-ri --no-rdoc fpm
gem install fpm
./package.sh
```

View File

@ -1,12 +1,12 @@
#!/bin/bash
cd "$( dirname "${BASH_SOURCE[0]}" )"
set -Eeuo pipefail
cd "$( dirname "${BASH_SOURCE[0]}" )" || exit 1
fpm -s dir -t deb --force \
-n pve-fake-subscription \
--description "Pollute the subscription cache of Proxmox VE (>=5.0), Proxmox Mail Gateway (>=5.0) & Proxmox Backup Server (>=1.0) so it won't alert you on dashboard login" \
--url "https://github.com/Jamesits/pve-fake-subscription" \
-v 0.0.7 \
-v 0.0.8 \
--license "GLWTS(Good Luck With That Shit) Public License" \
--depends "python3" \
--architecture all \