aspnetcore/eng/helix/content/installaspnetref.sh

16 lines
279 B
Bash

#!/usr/bin/env bash
# Cause the script to fail if any subcommand fails
set -e
refPath=$1
output_dir=$2
tmpDir=./tmpRuntime
echo "Installing ref package from $refPath"
cp $refPath sharedFx.zip
mkdir -p $output_dir
echo "Unzip to $output_dir"
unzip sharedFx.zip -d $output_dir