Unverified Commit cdcbeed7 authored by Adam C. Stephens's avatar Adam C. Stephens Committed by GitHub
Browse files

sampo: fix regex escape in updateScript (#504254)

parents f48780d4 3821d95d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -35,7 +35,7 @@ rustPlatform.buildRustPackage (finalAttrs: {
  nativeInstallCheckInputs = [ versionCheckHook ];
  doInstallCheck = true;

  passthru.updateScript = nix-update-script { extraArgs = [ "--version-regex=sampo-v([0-9\.]*)" ]; };
  passthru.updateScript = nix-update-script { extraArgs = [ "--version-regex=sampo-v([0-9\\.]*)" ]; };

  meta = {
    description = "Automate changelogs, versioning, and publishing—even for monorepos across multiple package registries";