Skip to content

Commit 3351428

Browse files
authored
Merge pull request #449 from DannyBen/fix/completions-install
Fix `bashly completeions --install`
2 parents e886ef2 + 2254c96 commit 3351428

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed

.github/workflows/debug.yml

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