Skip to content

Commit

Permalink
fix: fs
Browse files Browse the repository at this point in the history
  • Loading branch information
cugu committed Oct 13, 2024
1 parent 9a76a42 commit fd38c62
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,18 +116,18 @@ jobs:

- name: Move Binary
run: |
mkdir bin store
mkdir bin output
mv artifactcollector* bin
mv *.forensicstore store
mv *.zip output
shell: bash

- name: Upload artifactcollector
uses: actions/upload-artifact@master
uses: actions/upload-artifact@v4
with:
name: artifactcollector ${{ matrix.os }}
path: bin
- name: Upload store
uses: actions/upload-artifact@master
- name: Upload output
uses: actions/upload-artifact@v4
with:
name: store ${{ matrix.os }}
path: store
name: output ${{ matrix.os }}
path: output
2 changes: 1 addition & 1 deletion build/go/fs/fs.go
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ const (
// Mask for the type bits. For regular files, none will be set.
ModeType = ModeDir | ModeSymlink | ModeNamedPipe | ModeSocket | ModeDevice | ModeCharDevice | ModeIrregular

ModePerm FileMode = 0o777 // Unix permission bits
ModePerm FileMode = 0777 // Unix permission bits
)

func (m FileMode) String() string {
Expand Down

0 comments on commit fd38c62

Please sign in to comment.