Skip to content

Commit

Permalink
Merge pull request #408 from jvshahid/fix-incompatability-with-packag…
Browse files Browse the repository at this point in the history
…e-builder

convert package-name to string
  • Loading branch information
sambrightman committed Dec 26, 2017
2 parents eea660b + 7df0c5e commit 23cf927
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cask.el
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ This function returns the path to the package file."
(config (cask--dependency-to-package-build-config dependency))
(files (cask--dependency-files dependency)))
(let ((version (package-build-checkout name config path)))
(package-build-package name version files path cask-tmp-packages-path)
(package-build-package (symbol-name name) version files path cask-tmp-packages-path)
(let ((pattern (format "%s-%s.*" name version)))
(car (f-glob pattern cask-tmp-packages-path))))))

Expand Down

0 comments on commit 23cf927

Please sign in to comment.