From 9e5d45a0ef87d3e1b9669276ecee701227129dbc Mon Sep 17 00:00:00 2001 From: Danny Ben Shitrit Date: Fri, 17 Nov 2023 07:09:30 +0000 Subject: [PATCH] - Fix `bashly completeions --install` --- .github/workflows/mac-test.yml | 20 ++++++++++++++++++++ lib/bashly/commands/completions.rb | 2 ++ 2 files changed, 22 insertions(+) create mode 100644 .github/workflows/mac-test.yml diff --git a/.github/workflows/mac-test.yml b/.github/workflows/mac-test.yml new file mode 100644 index 00000000..6de4a3f0 --- /dev/null +++ b/.github/workflows/mac-test.yml @@ -0,0 +1,20 @@ +name: Experiment +on: [push] + +jobs: + test: + runs-on: macos-latest + name: Run something on mac + + steps: + - name: Checkout code + uses: actions/checkout@v3 + + - name: Print uname + run: uname -a + + - name: Update bash + run: brew install bash + + - name: Setup tmate session + uses: mxschmitt/action-tmate@v3 diff --git a/lib/bashly/commands/completions.rb b/lib/bashly/commands/completions.rb index 8ebc4047..00b52e17 100644 --- a/lib/bashly/commands/completions.rb +++ b/lib/bashly/commands/completions.rb @@ -1,3 +1,5 @@ +require 'completely' + module Bashly module Commands class Completions < Base