Skip to content

Commit

Permalink
Fixed warning
Browse files Browse the repository at this point in the history
  • Loading branch information
Agazoth committed Oct 10, 2023
1 parent d2ecf4b commit 180f71e
Show file tree
Hide file tree
Showing 11 changed files with 7 additions and 3 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,12 @@ jobs:
name: PSParquet
path: ./output/

- name: Install the module
run: |
Import-Module ./Artifact/$ModuleName -Force -Verbose -Debug
Get-Command -Module $ModuleName
shell: pwsh

release:
needs: build
runs-on: ubuntu-latest
Expand Down
Binary file modified PSParquet/bin/PSParquet.dll
Binary file not shown.
Binary file modified output/PSParquet/bin/PSParquet.dll
Binary file not shown.
Binary file not shown.
Binary file not shown.
4 changes: 1 addition & 3 deletions src/PSParquet/ExportParquetCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,7 @@ protected override async void ProcessRecord()
{
WriteVerbose("Using: " + FilePath.FullName);
PSObject[] io = InputObject;
var writeParquet = PSParquet.WriteParquetFile(io, FilePath.FullName);
WriteVerbose($"Write concluded with status {(writeParquet.IsCompletedSuccessfully ? "Failed" : "Succeded")}");

await PSParquet.WriteParquetFile(io, FilePath.FullName);

if (PassThru)
{
Expand Down
Binary file modified src/PSParquet/bin/Debug/net7.0/PSParquet.dll
Binary file not shown.
Binary file modified src/PSParquet/bin/Debug/net7.0/PSParquet.pdb
Binary file not shown.
Binary file modified src/PSParquet/obj/Debug/net7.0/PSParquet.dll
Binary file not shown.
Binary file modified src/PSParquet/obj/Debug/net7.0/PSParquet.pdb
Binary file not shown.

0 comments on commit 180f71e

Please sign in to comment.