Skip to content

Commit

Permalink
removed sudo from commands
Browse files Browse the repository at this point in the history
  • Loading branch information
jeroenverspeek committed Jan 5, 2024
1 parent f454218 commit dbcc728
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/Cube/Pictures.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const cubePicturesAppCommand = computed(() => {
}
} else {
// build command and command line options;
command = ['sudo', 'ts-node', appSrcDir + 'cubePictures/showCubePictures.ts'];
command = ['ts-node', appSrcDir + 'cubePictures/showCubePictures.ts'];
if (cubePictureDir.value) {
command.push('--cubePictureDir');
command.push(cubePictureDir.value);
Expand All @@ -31,7 +31,7 @@ const cubePicturesAppCommand = computed(() => {
const cubeMapAppCommand = computed(() => {
// build command and command line options;
let command = ['sudo', 'ts-node', appSrcDir + 'cubemap/showCubemap.ts'];
let command = ['ts-node', appSrcDir + 'cubemap/showCubemap.ts'];
let cubemapLayout = '';
if (cubemap.value) {
if (cubemap.value == 'atlas1_CUBE.png') {
Expand Down
5 changes: 5 additions & 0 deletions pages/about.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ const { version } = useConfig();
<h4>
A graphical user interface for the led-hexahedron<br><br><br>

<div>
<img src="/gallery/cube_rubikscube_pattern.jpg" alt="image not found" width="300px" height="300px" />
</div>


A Verspeek production<br><br>

Contact: hexaturion@gmail.com<br><br>
Expand Down
Binary file added public/gallery/cube_rubikscube_pattern.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit dbcc728

Please sign in to comment.