mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-22 15:42:20 +03:00
18 lines
431 B
Bash
Executable File
18 lines
431 B
Bash
Executable File
#!/bin/bash
|
|
set -Eeuo pipefail
|
|
|
|
echo "----- install deb package -----"
|
|
|
|
# install
|
|
deb_package=$(ls target/upload/hurl_*_amd64.deb)
|
|
echo "$deb_package"
|
|
install_dir="/tmp/hurl-deb-package"
|
|
mkdir -p "${install_dir}"
|
|
dpkg -x "${deb_package}" "${install_dir}"
|
|
|
|
# Return PATH var to parent shell
|
|
package_dir="${install_dir}/usr/bin"
|
|
echo "Run this if you want to use fresh builded hurl package:"
|
|
echo " export PATH=$package_dir:$PATH"
|
|
|