void-packages

Void Source Packages
git clone git://ezup.dev/void-packages.git
Log | Files | Refs | README | LICENSE

go-bindata.patch (606B)


      1 Source: John <johnz@posteo.net>
      2 Upsteam: no
      3 Reason: Our go-bindata seems to strip prefixed slash even when -prefix doesn't
      4 end with one.
      5 ---
      6 diff --git interfacer/src/browsh/firefox.go interfacer/src/browsh/firefox.go
      7 index 00a9d72..2620522 100644
      8 --- interfacer/src/browsh/firefox.go
      9 +++ interfacer/src/browsh/firefox.go
     10 @@ -227,7 +227,7 @@ func firefoxMarionette() {
     11  // Install the Browsh extension that was bundled with `go-bindata` under
     12  // `webextension.go`.
     13  func installWebextension() {
     14 -	data, err := Asset("/browsh.xpi")
     15 +	data, err := Asset("browsh.xpi")
     16  	if err != nil {
     17  		Shutdown(err)
     18  	}