Skip to content

Commit

Permalink
Included extensions/ in make release
Browse files Browse the repository at this point in the history
  • Loading branch information
rkoeninger authored Sep 26, 2019
1 parent b881155 commit 0d1783b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ ifeq ($(OSName),windows)
$(PS) "New-Item -Path $(ReleaseFolderName) -Force -ItemType Directory"
$(PS) "Copy-Item -Recurse assets $(ReleaseFolderName)"
$(PS) "Copy-Item -Recurse doc $(ReleaseFolderName)"
$(PS) "Copy-Item -Recurse extensions $(ReleaseFolderName)"
$(PS) "Copy-Item -Recurse klambda $(ReleaseFolderName)"
$(PS) "Copy-Item -Recurse sources $(ReleaseFolderName)"
$(PS) "Copy-Item -Recurse tests $(ReleaseFolderName)"
Expand All @@ -115,7 +116,7 @@ else
mkdir -p release
rm -rf $(ReleaseFolderName)
mkdir -p $(ReleaseFolderName)
cp -rf assets doc klambda sources tests CHANGELOG.md LICENSE.txt README.md $(ReleaseFolderName)
cp -rf assets doc extensions klambda sources tests CHANGELOG.md LICENSE.txt README.md $(ReleaseFolderName)
zip -r release/$(ReleaseZip) $(ReleaseFolderName)
tar -vczf release/$(ReleaseTarGz) $(ReleaseFolderName)
rm -rf $(ReleaseFolderName)
Expand Down

2 comments on commit 0d1783b

@tizoc
Copy link
Member

@tizoc tizoc commented on 0d1783b Sep 26, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oops, I have to re-upload those files then.

@tizoc
Copy link
Member

@tizoc tizoc commented on 0d1783b Sep 26, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done.

Please sign in to comment.