From 7c798d4fc48e5ccfe5aa81e18d633fe6bfb8ca37 Mon Sep 17 00:00:00 2001 From: makanu Date: Fri, 6 Sep 2024 16:53:14 +0000 Subject: [PATCH] Remove PROMPT variable from action since delayed feature for PS1 manipulation this is no longer needed --- .github/workflows/tests_init_module.yml | 7 ------- 1 file changed, 7 deletions(-) diff --git a/.github/workflows/tests_init_module.yml b/.github/workflows/tests_init_module.yml index 58c48c5b68..f9283b68cd 100644 --- a/.github/workflows/tests_init_module.yml +++ b/.github/workflows/tests_init_module.yml @@ -37,13 +37,6 @@ jobs: sudo apt install zsh ksh fish echo "# INIT ZSH" > ~/.zshrc - - name: Prepare PROMPT variables - run: | - export BASH_PROMPT=$(bash -c 'source init/bash; echo "$PS1"') - export ZSH_PROMPT=$(zsh -c 'source init/zsh; echo "$PS1"') - export KSH_PROMPT=$(ksh -c 'source init/ksh; echo "$PS1"') - export FISH_PROMPT=$(fish -c 'source init/fish; echo "$PS1"') - - name: Run tests for available shells run: | .github/workflows/scripts/test_init_scripts.sh "bash" "zsh" "ksh" "fish"