You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: plugins/core/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonq/FeatureDevSessionContext.kt
+4-2Lines changed: 4 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -202,16 +202,18 @@ class FeatureDevSessionContext(val project: Project, val maxProjectSizeBytes: Lo
202
202
}
203
203
204
204
val zipFilePath = createTemporaryZipFileAsync { zipfs ->
205
+
val isPosix =FileSystems.getDefault().supportedFileAttributeViews().contains("posix");
205
206
filesToIncludeFlow.collect { file ->
206
207
if (!file.isDirectory) {
207
208
val externalFilePath =Path(file.path)
208
-
val externalFilePermissions = externalFilePath.getPosixFilePermissions()
209
209
val relativePath =Path(file.path).relativeTo(projectRootPath)
0 commit comments