Unverified Commit 443b6c78 authored by Doron Behar's avatar Doron Behar Committed by GitHub
Browse files

Merge pull request #295314 from bryango/tectonic-inherit-argv0

tectonic: --inherit-argv0 in the wrapper
parents 04e1a2d6 77c6cf9e
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -90,4 +90,10 @@ lib.mapAttrs networkRequiringTestPkg {
    tectonic -X new
    cat Tectonic.toml | grep "${tectonic.bundleUrl}"
  '';

  /** test that the `nextonic -> tectonic` symlink is working as intended */
  nextonic = ''
    nextonic new 2>&1 \
      | grep '"version 2" Tectonic command-line interface activated'
  '';
}
+2 −1
Original line number Diff line number Diff line
@@ -46,7 +46,8 @@ symlinkJoin {
  + ''
    makeWrapper ${lib.getBin tectonic-unwrapped}/bin/tectonic $out/bin/tectonic \
      --prefix PATH : "${lib.getBin biber-for-tectonic}/bin" \
      --add-flags "--web-bundle ${tectonic.passthru.bundleUrl}"
      --add-flags "--web-bundle ${tectonic.passthru.bundleUrl}" \
      --inherit-argv0 ## make sure binary name e.g. `nextonic` is passed along
    ln -s $out/bin/tectonic $out/bin/nextonic
  '';