mirror of
https://github.com/webinstall/webi-installers.git
synced 2026-03-03 18:00:18 +00:00
17 lines
233 B
Bash
17 lines
233 B
Bash
#!/bin/bash
|
|
|
|
set -e
|
|
set -u
|
|
|
|
pkg_cmd_name="pathman"
|
|
WEBI_SINGLE=true
|
|
|
|
pkg_get_current_version() {
|
|
echo $(pathman version 2>/dev/null | head -n 1 | cut -d ' ' -f2 | sed 's:^v::')
|
|
}
|
|
|
|
pkg_done_message() {
|
|
# no message
|
|
true
|
|
}
|