Skip to content

Commit cb1ad97

Browse files
authored
Update mise.spec (#3)
* Update mise.spec * Update starship.spec * Update atuin.spec * Update files-changed.yaml
1 parent 53babe2 commit cb1ad97

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

.github/workflows/files-changed.yaml

+3-2
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,12 @@ jobs:
1616
id: changes
1717
run: |
1818
git diff-tree --no-commit-id --name-only -r ${{ github.sha }} > changed_files.txt
19-
echo "FILES=$(cat changed_files.txt)" >> $GITHUB_ENV
19+
cat changed_files.txt
20+
echo "FILES=$(cat changed_files.txt | tr '\n' ' ')" >> $GITHUB_ENV
2021
2122
- name: Print Changed Files
2223
run: |
23-
echo $FILES
24+
echo "Changed files: ${{ env.FILES }}"
2425
env:
2526
FILES: ${{ env.FILES }}
2627

specs/atuin.spec

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Source1: https://raw.githubusercontent.com/atuinsh/atuin/v%{version}/README.m
1717
Atuin replaces your existing shell history with a SQLite database, and records additional context for your commands. Additionally, it provides optional and fully encrypted synchronisation of your history between machines, via an Atuin server.
1818

1919
%prep
20-
%autosetup -c
20+
%autosetup -n atuin
2121

2222
cp %{SOURCE1} CONFIGURATION.md
2323
#cp %{SOURCE2} .

specs/mise.spec

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,5 @@ install -pvD -m 0644 %{name}.fish %{buildroot}%{fish_completions_dir}/%{name}.fi
4040
%files
4141
%doc CONFIGURATION.md
4242
%{_bindir}/%{name}
43-
/%{bash_completions_dir}/%{name}
44-
/%{fish_completions_dir}/%{name}.fish
43+
%{bash_completions_dir}/%{name}
44+
%{fish_completions_dir}/%{name}.fish

specs/starship.spec

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,5 +41,5 @@ install -pvD -m 0644 _%{name} %{buildroot}%{zsh_completions_dir}/_%{name}
4141
%files
4242
%doc CONFIGURATION.md
4343
%{_bindir}/%{name}
44-
/%{bash_completions_dir}/%{name}
45-
/%{zsh_completions_dir}/_%{name}
44+
%{bash_completions_dir}/%{name}
45+
%{zsh_completions_dir}/_%{name}

0 commit comments

Comments
 (0)