Skip to content

Commit 9e5d45a

Browse files
committed
- Fix bashly completeions --install
1 parent e886ef2 commit 9e5d45a

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

.github/workflows/mac-test.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Experiment
2+
on: [push]
3+
4+
jobs:
5+
test:
6+
runs-on: macos-latest
7+
name: Run something on mac
8+
9+
steps:
10+
- name: Checkout code
11+
uses: actions/checkout@v3
12+
13+
- name: Print uname
14+
run: uname -a
15+
16+
- name: Update bash
17+
run: brew install bash
18+
19+
- name: Setup tmate session
20+
uses: mxschmitt/action-tmate@v3

lib/bashly/commands/completions.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
require 'completely'
2+
13
module Bashly
24
module Commands
35
class Completions < Base

0 commit comments

Comments
 (0)