mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-12-23 19:12:06 +03:00
17 lines
416 B
Bash
Executable File
17 lines
416 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
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"
|