From 55e7ff469ec5a6cb1c20e8adbc02a682c599b6ec Mon Sep 17 00:00:00 2001 From: kyleishie Date: Mon, 31 Oct 2022 10:02:31 -0400 Subject: [PATCH] excludes .idea via .gitignore adds postprocess to remove rltype from repo urls --- .gitignore | 1 + manifest.yaml | 7 +++++++ 2 files changed, 8 insertions(+) diff --git a/.gitignore b/.gitignore index e50125c..7e3eacf 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ build/ .direnv/ .envrc ass +.idea \ No newline at end of file diff --git a/manifest.yaml b/manifest.yaml index 86e7da1..81f2a1d 100644 --- a/manifest.yaml +++ b/manifest.yaml @@ -10,3 +10,10 @@ repos: - extras include: manifests/rocky-coreos.yaml + +postprocess: + - | + #!/usr/bin/env bash + set -xeuo pipefail + # Remove rltype from repo urls + sed -i 's/\$rltype//g' input.txt \ No newline at end of file