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