Skip to content
This repository has been archived by the owner on Aug 18, 2024. It is now read-only.

Commit

Permalink
update paths
Browse files Browse the repository at this point in the history
  • Loading branch information
HexaField committed Aug 18, 2024
1 parent eb17882 commit 79030e7
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion devtool/js/emulatedDevice.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import { generateUUID } from 'three/src/math/MathUtils.js';
import { updateUserObjects } from './messenger';

import config from '@etherealengine/common/src/config';
const assetURL = config.client.fileServer + '/projects/ee-bot/devtool'
const assetURL = config.client.fileServer + '/projects/etherealengine/ee-bot/devtool'

const SELECTION_MOUSE_DOWN_THRESHOLD = 300;

Expand Down
2 changes: 1 addition & 1 deletion devtool/jsx/controllers.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import {
} from '../js/messenger';
import config from '@etherealengine/common/src/config';

const assetURL = config.client.fileServer + '/projects/ee-bot/devtool'
const assetURL = config.client.fileServer + '/projects/etherealengine/ee-bot/devtool'

import { Joystick } from '../js/joystick';
import React from 'react';
Expand Down
2 changes: 1 addition & 1 deletion devtool/jsx/hands.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import React from 'react';
import { createAnalogPressFunction } from './controllers.jsx';

import config from '@etherealengine/common/src/config';
const assetURL = config.client.fileServer + '/projects/ee-bot/devtool'
const assetURL = config.client.fileServer + '/projects/etherealengine/ee-bot/devtool'


export default function HandPanel({ deviceKey, device }) {
Expand Down
2 changes: 1 addition & 1 deletion devtool/jsx/headset.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import {
} from '../js/messenger';
import config from '@etherealengine/common/src/config';

const assetURL = config.client.fileServer + '/projects/ee-bot/devtool'
const assetURL = config.client.fileServer + '/projects/etherealengine/ee-bot/devtool'

import { DEVICE_DEFINITIONS } from '../js/devices';
import { EmulatorSettings } from '../js/emulatorStates';
Expand Down
2 changes: 1 addition & 1 deletion devtool/jsx/inspector.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import React from 'react';
import { changeRoomDimension } from '../js/messenger';

import config from '@etherealengine/common/src/config';
const assetURL = config.client.fileServer + '/projects/ee-bot/devtool'
const assetURL = config.client.fileServer + '/projects/etherealengine/ee-bot/devtool'

export default function Inspector({ device, inputMode }) {
const sceneContainerRef = React.useRef();
Expand Down
2 changes: 1 addition & 1 deletion devtool/jsx/pose.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import initKeyboardControl from '../js/keyboard';


import config from '@etherealengine/common/src/config';
const assetURL = config.client.fileServer + '/projects/ee-bot/devtool'
const assetURL = config.client.fileServer + '/projects/etherealengine/ee-bot/devtool'

export default function PoseBar({ device, setInputMode }) {
const saveDefaultPoseRef = React.useRef();
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/bot/Dockerfile-bot
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ WORKDIR /app

COPY --from=builder /app ./
#Clone the repository and install dependecies
WORKDIR /app/packages/projects/projects/ee-bot
WORKDIR /app/packages/projects/projects/etherealengine/ee-bot
RUN git clone "https://github.com/SYBIOTE/ee-bot" .
RUN npm install
# run API
Expand Down

0 comments on commit 79030e7

Please sign in to comment.