Skip to content

Commit

Permalink
Just some formatting fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastianStehle committed Nov 18, 2024
1 parent d36d93e commit 1614f4d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ COPY *.sln ./

# Copy the main source project files
COPY ai/*/*.csproj ./
RUN for file in $(ls *.csproj); do mkdir -p assets/${file%.*}/ && mv $file ai/${file%.*}/; done
RUN for file in $(ls *.csproj); do mkdir -p ai/${file%.*}/ && mv $file ai/${file%.*}/; done

COPY assets/*/*.csproj ./
RUN for file in $(ls *.csproj); do mkdir -p assets/${file%.*}/ && mv $file assets/${file%.*}/; done
Expand Down
1 change: 0 additions & 1 deletion assets/Squidex.Assets.TusAdapter/AssetTusFile.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ public sealed class AssetTusFile(
Stream stream,
Action<AssetTusFile> disposed) : IAssetFile, ITusFile, IAsyncDisposable, IDisposable
{

public string Id { get; } = id;

public string FileName { get; } = GetFileName(metadata);
Expand Down

0 comments on commit 1614f4d

Please sign in to comment.