Skip to content

Commit

Permalink
Corrected folder where the NOTICE is created.
Browse files Browse the repository at this point in the history
  • Loading branch information
dlemstra committed Aug 28, 2024
1 parent a754b96 commit a0a44ee
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/ImageMagick/checkout.sh
Original file line number Diff line number Diff line change
Expand Up @@ -107,14 +107,14 @@ function getImagemagickVersion()

function createNotice()
{
local output=$1
local $noticeFolder=$1

if [ -z "$output" ]; then
output="output"
if [ -z "$noticeFolder" ]; then
noticeFolder="artifacts"
fi

mkdir -p $output
notice=$output/NOTICE
mkdir -p $noticeFolder
notice=$noticeFolder/NOTICE

echo -e "* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *\n" > $notice
echo -e "[ Magick.Native ] copyright:\n" >> $notice
Expand Down

0 comments on commit a0a44ee

Please sign in to comment.