Skip to content

Commit 3d0a15d

Browse files
committed
Fix provider org.bitbucket
Closes #35
1 parent e68da89 commit 3d0a15d

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1515
- Add `local.generic` provider. ([@Commandcracker](https://github.com/Commandcracker))
1616
- Add `local.string` provider. ([@Commandcracker](https://github.com/Commandcracker))
1717
- Add [scripts](https://unicornpkg.madefor.cc/specification/package-tables.html#script).
18+
- Fix `org.bitbucket` and `com.gitlab` providers.
1819

1920
## v0.1.0
2021

unicorn/provider/org.bitbucket.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ local unicorn = dofile("/lib/unicorn/init.lua")
55
local function install_bitbucket(package_table)
66
for remote_path, install_path in pairs(package_table.instdat.filemaps) do
77
local http_data = unicorn.util.smartHttp(
8-
("https://bitbucket.org/raw/%s/%s/%s/%s"):format(
8+
("https://bitbucket.org/%s/%s/raw/%s/%s"):format(
99
package_table.instdat.repo_owner,
1010
package_table.instdat.repo_name,
1111
package_table.instdat.repo_ref,

0 commit comments

Comments
 (0)