Skip to content

Commit

Permalink
Ensure .gitignore ignores bin/ directory
Browse files Browse the repository at this point in the history
I'm not sure why there was a . in front of the ignore pattern,
but it prevented my Git from recognizing the bin/ directory as
being ignored. Removing the leading . fixed the issue.

Signed-off-by: Matthew Heon <[email protected]>
  • Loading branch information
mheon committed Oct 2, 2023
1 parent 2bdf976 commit 698d07d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
./bin/
/bin/
capture.pcap
tmp/
test/qcon.log
4 changes: 4 additions & 0 deletions pkg/fileserver/server_unsupported.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,9 @@ import (
)

func StartShares(mounts map[string]uint64) error {
if len(mounts) == 0 {
return nil
}

return fmt.Errorf("this platform does not support sharing directories")
}

0 comments on commit 698d07d

Please sign in to comment.